forked from cubetiq/cubetiq_dart_shared
init dart shared
This commit is contained in:
16
test/cubetiq_dart_shared_test.dart
Normal file
16
test/cubetiq_dart_shared_test.dart
Normal file
@@ -0,0 +1,16 @@
|
||||
import 'package:cubetiq_dart_shared/cubetiq_dart_shared.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);
|
||||
});
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user