main
1/*import 'package:blood_pressure_app/features/bluetooth/ble_read_cubit.dart';
2import 'package:blood_pressure_app/logging.dart';
3import 'package:flutter_blue_plus/flutter_blue_plus.dart';
4import 'package:flutter_test/flutter_test.dart';
5import 'package:mockito/annotations.dart';
6import 'package:mockito/mockito.dart';
7
8@GenerateNiceMocks([
9 MockSpec<BluetoothDevice>(),
10 MockSpec<BluetoothService>(),
11 MockSpec<BluetoothCharacteristic>()
12])
13import 'ble_read_cubit_test.mocks.dart';*/
14
15void main() {
16 // TODO: test once practice shows there are no flaws in these goals:
17 // - success path works
18 // - should fail when device not connected
19 // - should fail without matching service
20 // - fails without matching characteristic
21 // - fails when not able to read data
22}