[prev in list] [next in list] [prev in thread] [next in thread] 

List:       slide-dev
Subject:    svn commit: r1028524 - in
From:       sebb () apache ! org
Date:       2010-10-28 22:37:48
Message-ID: 20101028223748.6D9AF2388A1C () eris ! apache ! org
[Download RAW message or body]

Author: sebb
Date: Thu Oct 28 22:37:48 2010
New Revision: 1028524

URL: http://svn.apache.org/viewvc?rev=1028524&view=rev
Log:
Start adding tests for SamplingStatCalculator

Added:
    jakarta/jmeter/trunk/test/src/org/apache/jmeter/visualizers/
    jakarta/jmeter/trunk/test/src/org/apache/jmeter/visualizers/TestSamplingStatCalculator.java \
(with props)

Added: jakarta/jmeter/trunk/test/src/org/apache/jmeter/visualizers/TestSamplingStatCalculator.java
                
URL: http://svn.apache.org/viewvc/jakarta/jmeter/trunk/test/src/org/apache/jmeter/visualizers/TestSamplingStatCalculator.java?rev=1028524&view=auto
 ==============================================================================
--- jakarta/jmeter/trunk/test/src/org/apache/jmeter/visualizers/TestSamplingStatCalculator.java \
                (added)
+++ jakarta/jmeter/trunk/test/src/org/apache/jmeter/visualizers/TestSamplingStatCalculator.java \
Thu Oct 28 22:37:48 2010 @@ -0,0 +1,153 @@
+/*
+ * 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.visualizers;
+
+import static org.junit.Assert.*;
+
+import org.apache.jmeter.samplers.SampleResult;
+import org.junit.Before;
+import org.junit.Test;
+
+public class TestSamplingStatCalculator {
+
+    private SamplingStatCalculator ssc;
+    @Before
+    public void setUp(){
+        ssc = new SamplingStatCalculator("JUnit");
+    }
+
+    @Test
+    public void testGetCurrentSample() {
+        assertNotNull(ssc.getCurrentSample()); // probably needed to avoid NPEs with \
GUIs +    }
+
+//    @Test
+//    public void testGetElapsed() {
+//        fail("Not yet implemented");
+//    }
+//
+//    @Test
+//    public void testGetRate() {
+//        fail("Not yet implemented");
+//    }
+//
+//    @Test
+//    public void testGetBytesPerSecond() {
+//        fail("Not yet implemented");
+//    }
+//
+//    @Test
+//    public void testGetKBPerSecond() {
+//        fail("Not yet implemented");
+//    }
+
+    @Test
+    public void testGetAvgPageBytes() {
+        SampleResult res = new SampleResult();
+        assertEquals(0,ssc.getAvgPageBytes(),0);
+        res.setResponseData("abcdef", "UTF-8");
+        ssc.addSample(res);
+        res.setResponseData("abcde", "UTF-8");
+        ssc.addSample(res);
+        res.setResponseData("abcd", "UTF-8");
+        ssc.addSample(res);
+        assertEquals(5,ssc.getAvgPageBytes(),0);
+    }
+
+//    @Test
+//    public void testGetLabel() {
+//        fail("Not yet implemented");
+//    }
+//
+//    @Test
+//    public void testAddSample() {
+//        fail("Not yet implemented");
+//    }
+//
+//    @Test
+//    public void testGetErrorPercentage() {
+//        fail("Not yet implemented");
+//    }
+//
+//    @Test
+//    public void testToString() {
+//        fail("Not yet implemented");
+//    }
+//
+//    @Test
+//    public void testGetErrorCount() {
+//        fail("Not yet implemented");
+//    }
+//
+//    @Test
+//    public void testGetMaxThroughput() {
+//        fail("Not yet implemented");
+//    }
+//
+//    @Test
+//    public void testGetDistribution() {
+//        fail("Not yet implemented");
+//    }
+//
+//    @Test
+//    public void testGetPercentPointDouble() {
+//        fail("Not yet implemented");
+//    }
+//
+//    @Test
+//    public void testGetCount() {
+//        fail("Not yet implemented");
+//    }
+//
+//    @Test
+//    public void testGetMax() {
+//        fail("Not yet implemented");
+//    }
+//
+//    @Test
+//    public void testGetMean() {
+//        fail("Not yet implemented");
+//    }
+//
+//    @Test
+//    public void testGetMeanAsNumber() {
+//        fail("Not yet implemented");
+//    }
+//
+//    @Test
+//    public void testGetMedian() {
+//        fail("Not yet implemented");
+//    }
+//
+//    @Test
+//    public void testGetMin() {
+//        fail("Not yet implemented");
+//    }
+//
+//    @Test
+//    public void testGetPercentPointFloat() {
+//        fail("Not yet implemented");
+//    }
+//
+//    @Test
+//    public void testGetStandardDeviation() {
+//        fail("Not yet implemented");
+//    }
+
+}

Propchange: jakarta/jmeter/trunk/test/src/org/apache/jmeter/visualizers/TestSamplingStatCalculator.java
                
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: jakarta/jmeter/trunk/test/src/org/apache/jmeter/visualizers/TestSamplingStatCalculator.java
                
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision



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


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic