Author: sebb
Date: Wed Sep 23 13:06:20 2009
New Revision: 818088
URL: http://svn.apache.org/viewvc?rev=818088&view=rev
Log:
Another test
Added:
jakarta/jmeter/trunk/src/junit/test/RerunTest.java (with props)
Added: jakarta/jmeter/trunk/src/junit/test/RerunTest.java
URL:
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/src/junit/test/RerunTest.java?rev=818088&view=auto
==============================================================================
--- jakarta/jmeter/trunk/src/junit/test/RerunTest.java (added)
+++ jakarta/jmeter/trunk/src/junit/test/RerunTest.java Wed Sep 23 13:06:20 2009
@@ -0,0 +1,33 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF 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 test;
+
+import junit.framework.TestCase;
+
+/**
+ * Test to demonstrate whether a test instance can be re-run
+ */
+public class RerunTest extends TestCase {
+
+ private int i = 123;
+ public void testRerun(){
+ assertEquals(123,i);
+ i++;
+ }
+}
Propchange: jakarta/jmeter/trunk/src/junit/test/RerunTest.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: jakarta/jmeter/trunk/src/junit/test/RerunTest.java
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]