Set up method; executed before each test. @throws IOException should never be thrown
()
| 26 | * @throws IOException should never be thrown |
| 27 | */ |
| 28 | @BeforeEach public void setUp() throws IOException { |
| 29 | data = new DBNode(new IOContent(XMLSTR)).data(); |
| 30 | context.openDB(data); |
| 31 | } |
| 32 | |
| 33 | /** Clean up method; executed after each test. */ |
| 34 | @AfterEach public void end() { |