Files
radio-otherway/mobile/test/unit_test.dart
Fergal Moran fa348c8ab2 Add mobile app
2023-03-06 05:27:34 +00:00

16 lines
390 B
Dart

// This is an example unit test.
//
// A unit test tests a single function, method, or class. To learn more about
// writing unit tests, visit
// https://flutter.dev/docs/cookbook/testing/unit/introduction
import 'package:flutter_test/flutter_test.dart';
void main() {
group('Plus Operator', () {
test('should add two numbers together', () {
expect(1 + 1, 2);
});
});
}