假设我在 dart 文件中定义了一个私有函数hello.dart
:
_hello() {
return "world";
}
我想在另一个文件中测试它mytest.dart
:
library mytest;
import 'dart:unittest/unittest.dart';
main() {
test('test private functions', () {
expect(_hello(), equals("world"));
}
}
但不幸的是,无法编译测试代码。但我确实需要测试那个私有_hello
函数。有什么解决办法吗?