Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
|
Brian Wilkerson
2012/08/21 21:30:01
nit: copyright year
| |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 package com.google.dart.compiler; | 5 package com.google.dart.compiler; |
| 6 | 6 |
| 7 import junit.extensions.TestSetup; | 7 import junit.extensions.TestSetup; |
| 8 import junit.framework.Test; | 8 import junit.framework.Test; |
| 9 import junit.framework.TestSuite; | 9 import junit.framework.TestSuite; |
| 10 | 10 |
| 11 public class CompilerTests extends TestSetup { | 11 public class CompilerTests extends TestSetup { |
| 12 | 12 |
| 13 public CompilerTests(Test test) { | 13 public CompilerTests(Test test) { |
| 14 super(test); | 14 super(test); |
| 15 } | 15 } |
| 16 | 16 |
| 17 public static Test suite() { | 17 public static Test suite() { |
| 18 TestSuite suite = new TestSuite("DartC compiler test suite."); | 18 TestSuite suite = new TestSuite("DartC compiler test suite."); |
| 19 suite.addTestSuite(SystemLibraryManagerTest.class); | 19 suite.addTestSuite(PackageLibraryManagerTest.class); |
| 20 suite.addTestSuite(PrettyErrorFormatterTest.class); | 20 suite.addTestSuite(PrettyErrorFormatterTest.class); |
| 21 return suite; | 21 return suite; |
| 22 } | 22 } |
| 23 } | 23 } |
| OLD | NEW |