You are viewing a plain text version of this content. The canonical link for it is here.
Posted to kato-commits@incubator.apache.org by sp...@apache.org on 2009/11/20 10:42:17 UTC

svn commit: r882488 - in /incubator/kato/trunk/org.apache.kato: kato.tck.testsuite.scenario.142/src/main/java/org/apache/kato/tck/scenario142/ kato.tck.testsuite.scenario.150/src/main/java/org/apache/kato/tck/scenario150/ kato.tck.testsuite.scenario.16...

Author: spoole
Date: Fri Nov 20 10:42:16 2009
New Revision: 882488

URL: http://svn.apache.org/viewvc?rev=882488&view=rev
Log:
added scenerio specific dump trigger classes

Added:
    incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.142/src/main/java/org/apache/kato/tck/scenario142/DumpTrigger142.java
    incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.150/src/main/java/org/apache/kato/tck/scenario150/DumpTrigger150.java
    incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.160/src/main/java/org/apache/kato/tck/scenario160/DumpTrigger160.java
Modified:
    incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.142/src/main/java/org/apache/kato/tck/scenario142/ScenarioLauncher142.java

Added: incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.142/src/main/java/org/apache/kato/tck/scenario142/DumpTrigger142.java
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.142/src/main/java/org/apache/kato/tck/scenario142/DumpTrigger142.java?rev=882488&view=auto
==============================================================================
--- incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.142/src/main/java/org/apache/kato/tck/scenario142/DumpTrigger142.java (added)
+++ incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.142/src/main/java/org/apache/kato/tck/scenario142/DumpTrigger142.java Fri Nov 20 10:42:16 2009
@@ -0,0 +1,25 @@
+/*******************************************************************************
+ * Licensed 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 org.apache.kato.tck.scenario142;
+
+import org.apache.kato.tck.harness.scenario.IDumpTrigger;
+
+public class DumpTrigger142 implements IDumpTrigger{
+
+	public void dump() {
+		System.out.println("BOOM");
+		
+	}
+
+}

Modified: incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.142/src/main/java/org/apache/kato/tck/scenario142/ScenarioLauncher142.java
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.142/src/main/java/org/apache/kato/tck/scenario142/ScenarioLauncher142.java?rev=882488&r1=882487&r2=882488&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.142/src/main/java/org/apache/kato/tck/scenario142/ScenarioLauncher142.java (original)
+++ incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.142/src/main/java/org/apache/kato/tck/scenario142/ScenarioLauncher142.java Fri Nov 20 10:42:16 2009
@@ -1,3 +1,16 @@
+/*******************************************************************************
+ * Licensed 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 org.apache.kato.tck.scenario142;
 
 import org.apache.kato.tck.scenario142.javaruntime.JavaruntimeScenerioSetup;

Added: incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.150/src/main/java/org/apache/kato/tck/scenario150/DumpTrigger150.java
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.150/src/main/java/org/apache/kato/tck/scenario150/DumpTrigger150.java?rev=882488&view=auto
==============================================================================
--- incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.150/src/main/java/org/apache/kato/tck/scenario150/DumpTrigger150.java (added)
+++ incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.150/src/main/java/org/apache/kato/tck/scenario150/DumpTrigger150.java Fri Nov 20 10:42:16 2009
@@ -0,0 +1,25 @@
+/*******************************************************************************
+ * Licensed 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 org.apache.kato.tck.scenario150;
+
+import org.apache.kato.tck.harness.scenario.IDumpTrigger;
+
+public class DumpTrigger150 implements IDumpTrigger{
+
+	public void dump() {
+		System.out.println("BOOM");
+		
+	}
+
+}

Added: incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.160/src/main/java/org/apache/kato/tck/scenario160/DumpTrigger160.java
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.160/src/main/java/org/apache/kato/tck/scenario160/DumpTrigger160.java?rev=882488&view=auto
==============================================================================
--- incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.160/src/main/java/org/apache/kato/tck/scenario160/DumpTrigger160.java (added)
+++ incubator/kato/trunk/org.apache.kato/kato.tck.testsuite.scenario.160/src/main/java/org/apache/kato/tck/scenario160/DumpTrigger160.java Fri Nov 20 10:42:16 2009
@@ -0,0 +1,25 @@
+/*******************************************************************************
+ * Licensed 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 org.apache.kato.tck.scenario160;
+
+import org.apache.kato.tck.harness.scenario.IDumpTrigger;
+
+public class DumpTrigger160 implements IDumpTrigger{
+
+	public void dump() {
+		System.out.println("BOOM");
+		
+	}
+
+}