ダーツ ファイルでプライベート関数を定義したとしますhello.dart
。
_hello() {
return "world";
}
別のファイルでテストしたいmytest.dart
:
library mytest;
import 'dart:unittest/unittest.dart';
main() {
test('test private functions', () {
expect(_hello(), equals("world"));
}
}
残念ながら、テスト コードはコンパイルできません。_hello
しかし、そのプライベート機能をテストする必要があります。解決策はありますか?