blob: 0a96ee28217054ea980e03d6e58232f02875c0d9 [file] [log] [blame]
/*
// Licensed to Julian Hyde under one or more contributor license
// agreements. See the NOTICE file distributed with this work for
// additional information regarding copyright ownership.
//
// Julian Hyde licenses this file to you under the Apache License,
// Version 2.0 (the "License"); you may not use this file except in
// compliance with the License. You may obtain a copy of the License at:
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
*/
package net.hydromatic.linq4j.test;
import net.hydromatic.linq4j.expressions.TypeTest;
import junit.framework.TestSuite;
/**
* Suite of all Linq4j tests.
*/
public class Linq4jSuite {
/** Returns a {@link TestSuite junit suite} of all Linq4j tests. */
public static TestSuite suite() {
TestSuite testSuite = new TestSuite();
testSuite.addTestSuite(PrimitiveTest.class);
testSuite.addTestSuite(Linq4jTest.class);
testSuite.addTestSuite(ExpressionTest.class);
testSuite.addTestSuite(TypeTest.class);
return testSuite;
}
}
// End Linq4jSuite.java