Last active
September 6, 2018 10:49
-
-
Save atreeon/bc005a192014b919ffd3133e380d3fc5 to your computer and use it in GitHub Desktop.
testingTest
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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