Author: sebb
Date: Wed Apr  9 20:57:35 2008
New Revision: 646637

URL: http://svn.apache.org/viewvc?rev=646637&view=rev
Log:
Test for misbehaving JVM boolean property editors

Added:
    
jakarta/jmeter/trunk/test/src/org/apache/jmeter/testbeans/gui/TestBooleanPropertyEditor.java
   (with props)

Added: 
jakarta/jmeter/trunk/test/src/org/apache/jmeter/testbeans/gui/TestBooleanPropertyEditor.java
URL: 
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/test/src/org/apache/jmeter/testbeans/gui/TestBooleanPropertyEditor.java?rev=646637&view=auto
==============================================================================
--- 
jakarta/jmeter/trunk/test/src/org/apache/jmeter/testbeans/gui/TestBooleanPropertyEditor.java
 (added)
+++ 
jakarta/jmeter/trunk/test/src/org/apache/jmeter/testbeans/gui/TestBooleanPropertyEditor.java
 Wed Apr  9 20:57:35 2008
@@ -0,0 +1,54 @@
+/*
+ * 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.testbeans.gui;
+
+import java.beans.PropertyEditor;
+import java.beans.PropertyEditorManager;
+
+/**
+ * Test class to check that the JVM provides sensible behaviour for the 
boolean PropertyEditor, i.e.
+ * that getAsText() can only return values that match getTags().
+ * 
+ */
+public class TestBooleanPropertyEditor extends junit.framework.TestCase {
+               public TestBooleanPropertyEditor(String name) {
+                       super(name);
+               }
+
+        public void testBooleanEditor(){
+            PropertyEditor propertyEditor = 
PropertyEditorManager.findEditor(boolean.class);
+            assertNotNull(propertyEditor);
+            String tags[] = propertyEditor.getTags();
+            assertEquals(2,tags.length);
+            assertEquals("True",tags[0]);
+            assertEquals("False",tags[1]);
+            
+            propertyEditor.setValue(Boolean.FALSE);
+            assertEquals("False",propertyEditor.getAsText());
+            propertyEditor.setAsText("False");
+            assertEquals("False",propertyEditor.getAsText());
+            propertyEditor.setAsText("false");
+            assertEquals("False",propertyEditor.getAsText());
+            
+            propertyEditor.setValue(Boolean.TRUE);
+            assertEquals("True",propertyEditor.getAsText());
+            propertyEditor.setAsText("True");
+            assertEquals("True",propertyEditor.getAsText());
+            propertyEditor.setAsText("true");
+            assertEquals("True",propertyEditor.getAsText());
+        }
+}
\ No newline at end of file

Propchange: 
jakarta/jmeter/trunk/test/src/org/apache/jmeter/testbeans/gui/TestBooleanPropertyEditor.java
------------------------------------------------------------------------------
    svn:eol-style = native

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



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to