аргументы метода?
import 'package:flutter_test/flutter_test.dart';
import 'package:mockito/mockito.dart';
class Functions {
void onListen(int a) {}
}
class MockFunctions extends Mock implements Functions {}
void main() {
test("onListen is called once when first listener is registered", () {
final functions = MockFunctions();
when(functions.onListen(any)).thenReturn(null);
/// ...
});
}
when(functions.onListen(any)).thenReturn(null); показывает ошибку The argument type 'Null' can't be assigned to the parameter type 'int'.
что не так? 🤔
Не помогает
mockito теперь с кодогеном то есть, вышеприведенный код у тебя и не заработает а вот mocktail да
Обсуждают сегодня