Skip to content

Instantly share code, notes, and snippets.

@atreeon
Last active September 6, 2018 10:49
Show Gist options
  • Save atreeon/bc005a192014b919ffd3133e380d3fc5 to your computer and use it in GitHub Desktop.
Save atreeon/bc005a192014b919ffd3133e380d3fc5 to your computer and use it in GitHub Desktop.
testingTest
import "package:test/test.dart";
void main() {
test("String.split() splits the string on the delimiter", () {
var string = "foo,bar,baz";
expect(string.split(","), equals(["foo", "bar", "baz"]));
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment