- initializated base structure of server - initializated base structure of client - initializated base structure of shared(lib for client and server)
9 lines
147 B
Dart
9 lines
147 B
Dart
import 'package:server/server.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
void main() {
|
|
test('calculate', () {
|
|
expect(calculate(), 42);
|
|
});
|
|
}
|