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

Side by Side Diff: compiler/javatests/com/google/dart/compiler/CompilerTests.java

Issue 10827457: rename refactor SystemLibraryManager -> PackagelibraryManager SdkLibraryManager -> SystemLibraryM... (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 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 | Annotate | Revision Log
OLDNEW
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698