OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 package parser | |
6 | |
7 import "testing" | |
8 | |
9 // TODO(rudominer) This dummy test is here in order to be able to test the | |
10 // go unit test infrastructure. It will eventually be replaced by a real test. | |
11 func TestDummyParserTest(t *testing.T) { | |
12 if 5.1 > 2.1*3.1 { | |
13 t.Fatalf("Something is wrong.") | |
14 } | |
15 } | |
OLD | NEW |