Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(668)

Side by Side Diff: mojom/mojom_parser/parser/parser_test.go

Issue 1384243002: Adds the ability to run pure Go unit tests in the Mojo test suite. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Rebasing Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « mojom/mojom_parser/lexer/lexer_test.go ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « mojom/mojom_parser/lexer/lexer_test.go ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698