Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.ua.tests/cheatsheet/org/eclipse/ua/tests/cheatsheet/parser/AllParserTests.java')
-rw-r--r--org.eclipse.ua.tests/cheatsheet/org/eclipse/ua/tests/cheatsheet/parser/AllParserTests.java36
1 files changed, 36 insertions, 0 deletions
diff --git a/org.eclipse.ua.tests/cheatsheet/org/eclipse/ua/tests/cheatsheet/parser/AllParserTests.java b/org.eclipse.ua.tests/cheatsheet/org/eclipse/ua/tests/cheatsheet/parser/AllParserTests.java
new file mode 100644
index 000000000..d861c3621
--- /dev/null
+++ b/org.eclipse.ua.tests/cheatsheet/org/eclipse/ua/tests/cheatsheet/parser/AllParserTests.java
@@ -0,0 +1,36 @@
+/*******************************************************************************
+ * Copyright (c) 2005 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.ua.tests.cheatsheet.parser;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
+/*
+ * Tests all cheat sheet parser functionality (automated).
+ */
+public class AllParserTests extends TestSuite {
+
+ /*
+ * Returns the test suite.
+ */
+ public static Test suite() {
+ return new AllParserTests();
+ }
+
+ /*
+ * Constructs a new test suite.
+ */
+ public AllParserTests() {
+ addTest(ValidTest.suite());
+ addTest(InvalidTest.suite());
+ addTest(TolerateTest.suite());
+ }
+}

Back to the top