blob: 87dece562bf5e46ef0fcc8eb576ee5e46c6066ae [file] [log] [blame]
package org.eclipse.e4.core.commands.tests;
import junit.framework.Test;
import junit.framework.TestSuite;
public class CommandTestSuite extends TestSuite {
public static Test suite() {
return new CommandTestSuite();
}
public CommandTestSuite() {
addTestSuite(DefineCommandsTest.class);
addTestSuite(HandlerTest.class);
}
}