You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jmeter-dev@jakarta.apache.org by se...@apache.org on 2005/10/23 19:42:09 UTC

svn commit: r327820 - /jakarta/jmeter/branches/rel-2-1/test/src/org/apache/jmeter/util/TestJMeterUtils.java

Author: sebb
Date: Sun Oct 23 10:42:02 2005
New Revision: 327820

URL: http://svn.apache.org/viewcvs?rev=327820&view=rev
Log:
Start of test suite for JMeterUtils

Added:
    jakarta/jmeter/branches/rel-2-1/test/src/org/apache/jmeter/util/TestJMeterUtils.java

Added: jakarta/jmeter/branches/rel-2-1/test/src/org/apache/jmeter/util/TestJMeterUtils.java
URL: http://svn.apache.org/viewcvs/jakarta/jmeter/branches/rel-2-1/test/src/org/apache/jmeter/util/TestJMeterUtils.java?rev=327820&view=auto
==============================================================================
--- jakarta/jmeter/branches/rel-2-1/test/src/org/apache/jmeter/util/TestJMeterUtils.java (added)
+++ jakarta/jmeter/branches/rel-2-1/test/src/org/apache/jmeter/util/TestJMeterUtils.java Sun Oct 23 10:42:02 2005
@@ -0,0 +1,61 @@
+/*
+ * Copyright 2005 The Apache Software Foundation.
+ *
+ * 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 to test JMeterUtils methods 
+ */
+     
+package org.apache.jmeter.util;
+
+import junit.framework.TestCase;
+
+public class TestJMeterUtils extends TestCase {
+
+    public TestJMeterUtils() {
+        super();
+    }
+
+    public TestJMeterUtils(String arg0) {
+        super(arg0);
+    }
+    
+
+        public void testSplit1() {
+            String in = "a,bc,,"; // Test ignore trailing split characters
+            String out[] = JMeterUtils.split(in, ",","?");
+            assertEquals(3, out.length);
+            assertEquals("a", out[0]);
+            assertEquals("bc", out[1]);
+        }
+
+        public void testSplit2() {
+            String in = ",,a,bc"; // Test leading split characters with default
+            String out[] = JMeterUtils.split(in, ",","?");
+            assertEquals(3, out.length);
+            assertEquals("a", out[1]);
+            assertEquals("bc", out[2]);
+        }
+        
+        public void testSplit3() {
+            String in = ",,a,bc"; // Test leading split characters no default
+            String out[] = JMeterUtils.split(in, ",","");
+            assertEquals(3, out.length);
+            assertEquals("", out[0]);
+            assertEquals("a", out[1]);
+            assertEquals("bc", out[2]);
+        }        
+}



---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org