Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 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 import org.junit.Test; | |
| 5 import org.junit.runner.RunWith; | |
| 6 import org.junit.runners.JUnit4; | |
| 7 | |
| 8 /** Empty test for GYP compatability. */ | |
| 9 @RunWith(JUnit4.class) | |
| 10 public class DummyTest { | |
| 11 @Test public void foo() { | |
| 12 } | |
| 13 } | |
| OLD | NEW |