Using Dart Milestone 4 version 21658
I'm new to Dart. I created a class. I want to unit test it. Both the class and the unit test are in the same Dart project created using the Dart Editor. I don't know how to make the unit test see my class. How can I do this?
Project Name: DartExp
Directory structure:
src/foo.dart
test/foo_test.dart
File contents:
--- foo.dart begin ----
//library foo;
class Foo
{
String bar;
}
--- foo.dart end ----
--- foo.dart begin ----
import 'package:unittest/unittest.dart';
import 'package:DartExp/foo.dart';
import 'DartExp/foo.dart';
import 'foo.dart';
import 'src/foo.dart';
import 'package:src/foo.dart';
main() {
test('test Foo', () {
Foo foo;
//expect(1,1);
});
}
--- foo.dart end ----
Things I've tried:
In the Dart Editor, in the file foo_test.dart, all my attempts to import foo.dart are marked as error because "...is not valid uri". The editor also says the class Foo is undefined. Removing all the foo.dart import statements, doesn't work either. Making foo.dart into a library doesn't work either.
Documentation of the Dart import statement doesn't seem to give any examples for this common use case.
So, how do you import a class into a unit test in Dart?