blob: c143bde987d875a4df81bbc18a85421546322e26 [file] [log] [blame]
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.google.dart.compiler.ast;
import junit.extensions.TestSetup;
import junit.framework.Test;
import junit.framework.TestSuite;
public class AstTests extends TestSetup {
public AstTests(TestSuite test) {
super(test);
}
public static Test suite() {
TestSuite suite = new TestSuite("Dart AST test suite.");
suite.addTestSuite(DartToSourceVisitorTest.class);
return new AstTests(suite);
}
}