9 lines
189 B
Dart
9 lines
189 B
Dart
|
import 'package:test/test.dart';
|
||
|
import 'package:hello_world/hello_world.dart';
|
||
|
|
||
|
void main() {
|
||
|
test("Say Hi!", () {
|
||
|
expect(new HelloWorld().hello(), equals("Hello, World!"));
|
||
|
});
|
||
|
}
|