OLD | NEW |
---|---|
(Empty) | |
1 package parser | |
viettrungluu
2015/10/09 21:39:50
"
rudominer
2015/10/09 23:42:07
Done.
| |
2 | |
3 import "testing" | |
4 | |
5 // TODO(rudominer) This dummy test is here in order to be able to test the | |
6 // go unit test infrastructure. It will eventually be replaced by a real test. | |
7 func TestDummyParserTest(t *testing.T) { | |
8 if 5.1 > 2.1*3.1 { | |
9 t.Fatalf("Something is wrong.") | |
10 } | |
11 } | |
OLD | NEW |