This repository has been archived on 2023-10-14. You can view files and clone it, but cannot push or open issues or pull requests.
canteenlib/test/canteenlib_test.dart
2022-03-22 20:12:10 +01:00

21 lines
436 B
Dart

import 'package:canteenlib/canteenlib.dart';
import 'package:test/test.dart';
import 'package:dotenv/dotenv.dart' show load, env;
void main() {
group('A group of tests', () {
load();
Canteen c = Canteen(env["ADDRESS"]!);
setUp(() {
c.login(env["USER"]!, env["PASS"]!);
});
test('First Test', () {
c.jidelnicekDen().then((t) {
expect(DateTime.now().day, t.den.day);
});
});
});
}