Chromium Code Reviews| Index: mojom/mojom_parser/parser/parser_test.go |
| diff --git a/mojom/mojom_parser/parser/parser_test.go b/mojom/mojom_parser/parser/parser_test.go |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c6f0ad27d5ed5de8e80e947e078456c7bb5eec7c |
| --- /dev/null |
| +++ b/mojom/mojom_parser/parser/parser_test.go |
| @@ -0,0 +1,11 @@ |
| +package parser |
|
viettrungluu
2015/10/09 21:39:50
"
rudominer
2015/10/09 23:42:07
Done.
|
| + |
| +import "testing" |
| + |
| +// TODO(rudominer) This dummy test is here in order to be able to test the |
| +// go unit test infrastructure. It will eventually be replaced by a real test. |
| +func TestDummyParserTest(t *testing.T) { |
| + if 5.1 > 2.1*3.1 { |
| + t.Fatalf("Something is wrong.") |
| + } |
| +} |