From ab7ccd81340d693008411e088e85d9f3d61645a4 Mon Sep 17 00:00:00 2001 From: Robert Antoni Buj i Gelonch Date: Sun, 28 Sep 2014 17:17:17 +0200 Subject: jurt: remove constructor in AnyConverter_Test (JUnit) Change-Id: I4393b59d7d3a285160d6090847d9a16676f41f4d Reviewed-on: https://gerrit.libreoffice.org/11677 Reviewed-by: David Ostrovsky Tested-by: David Ostrovsky --- jurt/test/com/sun/star/uno/AnyConverter_Test.java | 46 +++++++++++++++-------- 1 file changed, 31 insertions(+), 15 deletions(-) (limited to 'jurt') diff --git a/jurt/test/com/sun/star/uno/AnyConverter_Test.java b/jurt/test/com/sun/star/uno/AnyConverter_Test.java index eb55ae1a0fe5..eba78ace2c81 100644 --- a/jurt/test/com/sun/star/uno/AnyConverter_Test.java +++ b/jurt/test/com/sun/star/uno/AnyConverter_Test.java @@ -19,8 +19,9 @@ package com.sun.star.uno; import com.sun.star.lang.XTypeProvider; -import org.junit.Test; import static org.junit.Assert.*; +import org.junit.Before; +import org.junit.Test; public final class AnyConverter_Test { Any anyBool; @@ -37,20 +38,35 @@ public final class AnyConverter_Test { Any anyVoid; Any anyXTypeProvider; - Boolean aBool= Boolean.TRUE; - Character aChar= new Character('A'); - Byte aByte= Byte.valueOf((byte) 111); - Short aShort= Short.valueOf((short) 11111); - Integer aInt= Integer.valueOf( 1111111); - Long aLong= Long.valueOf( 0xffffffff); - Float aFloat= new Float( 3.14); - Double aDouble= new Double( 3.145); - Object aObj= new ATypeProvider(); - String aStr= "I am a string"; - Type aType= new Type(String.class); - byte[] arByte= new byte[] {1,2,3}; - - public AnyConverter_Test() { + Boolean aBool; + Character aChar; + Byte aByte; + Short aShort; + Integer aInt; + Long aLong; + Float aFloat; + Double aDouble; + Object aObj; + String aStr; + Type aType; + byte[] arByte; + + /** Class variables are initialized before each Test method */ + @Before public void setUp() throws Exception + { + aBool= Boolean.TRUE; + aChar= new Character('A'); + aByte= Byte.valueOf((byte) 111); + aShort= Short.valueOf((short) 11111); + aInt= Integer.valueOf( 1111111); + aLong= Long.valueOf( 0xffffffff); + aFloat= new Float( 3.14); + aDouble= new Double( 3.145); + aObj= new ATypeProvider(); + aStr= "I am a string"; + aType= new Type(String.class); + arByte= new byte[] {1,2,3}; + anyVoid= new Any(new Type(void.class), null); anyBool= new Any(new Type(Boolean.TYPE), aBool); anyChar= new Any(new Type(Character.TYPE), aChar); -- cgit