CE-781 rename beforeEach and afterEach (to help avoid overwriting in sub-classes)

This commit is contained in:
2024-01-10 19:59:40 -06:00
parent 4b1bdebe44
commit b64883f34f

View File

@ -49,7 +49,7 @@ public class FilesystemActionTest extends BaseTest
** **
*******************************************************************************/ *******************************************************************************/
@BeforeEach @BeforeEach
public void beforeEach() throws Exception public void filesystemBaseBeforeEach() throws Exception
{ {
primeFilesystem(); primeFilesystem();
QContext.init(TestUtils.defineInstance(), new QSession()); QContext.init(TestUtils.defineInstance(), new QSession());
@ -61,7 +61,7 @@ public class FilesystemActionTest extends BaseTest
** **
*******************************************************************************/ *******************************************************************************/
@AfterEach @AfterEach
public void afterEach() throws Exception public void filesystemBaseAfterEach() throws Exception
{ {
cleanFilesystem(); cleanFilesystem();
} }