- initializated base structure of server - initializated base structure of client - initializated base structure of shared(lib for client and server)
17 lines
296 B
Dart
17 lines
296 B
Dart
import 'package:shared/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);
|
|
});
|
|
});
|
|
}
|