You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2015/12/12 14:26:12 UTC

svn commit: r1719686 - in /jmeter/trunk/test/src/org/apache/jmeter/report/processor: ./ FieldSampleComparatorTest.java

Author: fschumacher
Date: Sat Dec 12 13:26:12 2015
New Revision: 1719686

URL: http://svn.apache.org/viewvc?rev=1719686&view=rev
Log:
Use simple test case for FieldSampleComparator.

Added:
    jmeter/trunk/test/src/org/apache/jmeter/report/processor/
    jmeter/trunk/test/src/org/apache/jmeter/report/processor/FieldSampleComparatorTest.java

Added: jmeter/trunk/test/src/org/apache/jmeter/report/processor/FieldSampleComparatorTest.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/test/src/org/apache/jmeter/report/processor/FieldSampleComparatorTest.java?rev=1719686&view=auto
==============================================================================
--- jmeter/trunk/test/src/org/apache/jmeter/report/processor/FieldSampleComparatorTest.java (added)
+++ jmeter/trunk/test/src/org/apache/jmeter/report/processor/FieldSampleComparatorTest.java Sat Dec 12 13:26:12 2015
@@ -0,0 +1,49 @@
+/*
+ * 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 org.apache.jmeter.report.processor;
+
+import junit.framework.TestCase;
+
+import org.apache.jmeter.report.core.Sample;
+import org.apache.jmeter.report.core.SampleMetadata;
+import org.junit.Test;
+
+public class FieldSampleComparatorTest extends TestCase {
+
+    private SampleMetadata sampleMetadata;
+    private FieldSampleComparator comparator;
+
+    @Override
+    protected void setUp() throws Exception {
+        super.setUp();
+        sampleMetadata = new SampleMetadata(',', "test");
+        comparator = new FieldSampleComparator("test");
+        comparator.initialize(sampleMetadata);
+    }
+
+    @Test
+    public void testCompare() {
+        Sample s1 = new Sample(0, sampleMetadata, "1");
+        Sample s2 = new Sample(1, sampleMetadata, "2");
+        assertTrue(comparator.compare(s1, s2) < 0);
+        assertTrue(comparator.compare(s2, s1) > 0);
+        assertTrue(comparator.compare(s2, s2) == 0);
+        assertTrue(comparator.compare(s1, s1) == 0);
+    }
+
+}