Author: tchemit Date: 2011-08-02 11:41:09 +0200 (Tue, 02 Aug 2011) New Revision: 2291 Url: http://nuiton.org/repositories/revision/jaxx/2291 Log: fix tests Modified: trunk/jaxx-runtime/src/test/java/jaxx/runtime/decorator/DecoratorProviderTest.java Modified: trunk/jaxx-runtime/src/test/java/jaxx/runtime/decorator/DecoratorProviderTest.java =================================================================== --- trunk/jaxx-runtime/src/test/java/jaxx/runtime/decorator/DecoratorProviderTest.java 2011-08-01 15:28:29 UTC (rev 2290) +++ trunk/jaxx-runtime/src/test/java/jaxx/runtime/decorator/DecoratorProviderTest.java 2011-08-02 09:41:09 UTC (rev 2291) @@ -25,7 +25,7 @@ package jaxx.runtime.decorator; import org.junit.Assert; -import org.junit.BeforeClass; +import org.junit.Before; import org.junit.Test; import java.io.File; @@ -56,10 +56,10 @@ } } - static DecoratorProvider provider; + DecoratorProvider provider; - @BeforeClass - public static void beforeTest() throws Exception { + @Before + public void beforeTest() throws Exception { provider = new MyDecoratorProvider(); }