Fixture set up
()
| 45 | |
| 46 | /** Fixture set up */ |
| 47 | @Override |
| 48 | public void setUp() throws Exception { |
| 49 | if (!Gate.isInitialised()) { |
| 50 | Gate.runInSandbox(true); |
| 51 | Gate.init(); |
| 52 | } |
| 53 | CreoleRegister register = Gate.getCreoleRegister(); |
| 54 | register.registerPlugin(new Plugin.Directory(new URL(TestDocument.getTestServerName()+"tests"))); |
| 55 | } // setUp |
| 56 | |
| 57 | /** Put things back as they should be after running tests |
| 58 | * (reinitialise the CREOLE register). |
nothing calls this directly
no test coverage detected