16 lines
318 B
Dart
16 lines
318 B
Dart
import 'package:fabric_foundation/fabric_foundation.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);
|
|
});
|
|
});
|
|
}
|