17 lines
306 B
Dart
17 lines
306 B
Dart
|
import 'package:fabric_auth/fabric_auth.dart';
|
||
|
import 'package:test/test.dart';
|
||
|
|
||
|
void main() {
|
||
|
group('A group of tests', () {
|
||
|
final awesome = Awesome();
|
||
|
|
||
|
setUp(() {
|
||
|
// Additional setup goes here.
|
||
|
});
|
||
|
|
||
|
test('First Test', () {
|
||
|
expect(awesome.isAwesome, isTrue);
|
||
|
});
|
||
|
});
|
||
|
}
|