Search in sources :

Example 1 with InitializeApplicationRemoteTestingService

use of org.mifos.test.acceptance.remote.InitializeApplicationRemoteTestingService in project head by mifos.

the class ViewClosedAccountsTest method setUp.

@Override
// one of the dependent methods throws Exception
@SuppressWarnings("PMD.SignatureDeclareThrowsException")
@BeforeMethod
public void setUp() throws Exception {
    super.setUp();
    appLauncher = new AppLauncher(selenium);
    new InitializeApplicationRemoteTestingService().reinitializeApplication(selenium);
}
Also used : InitializeApplicationRemoteTestingService(org.mifos.test.acceptance.remote.InitializeApplicationRemoteTestingService) AppLauncher(org.mifos.test.acceptance.framework.AppLauncher) BeforeMethod(org.testng.annotations.BeforeMethod)

Example 2 with InitializeApplicationRemoteTestingService

use of org.mifos.test.acceptance.remote.InitializeApplicationRemoteTestingService in project head by mifos.

the class ApplicationInitializeTest method applicationInitTest.

public void applicationInitTest() {
    InitializeApplicationPage initializeApplicationPage = new InitializeApplicationRemoteTestingService().reinitializeApplication(this.selenium);
    initializeApplicationPage.verifyPage();
}
Also used : InitializeApplicationRemoteTestingService(org.mifos.test.acceptance.remote.InitializeApplicationRemoteTestingService) InitializeApplicationPage(org.mifos.test.acceptance.framework.InitializeApplicationPage)

Example 3 with InitializeApplicationRemoteTestingService

use of org.mifos.test.acceptance.remote.InitializeApplicationRemoteTestingService in project head by mifos.

the class CenterMeetingTest method setUp.

@Override
@SuppressWarnings("PMD.SignatureDeclareThrowsException")
// one of the dependent methods throws Exception
@BeforeMethod(alwaysRun = true)
public void setUp() throws Exception {
    super.setUp();
    new InitializeApplicationRemoteTestingService().reinitializeApplication(selenium);
}
Also used : InitializeApplicationRemoteTestingService(org.mifos.test.acceptance.remote.InitializeApplicationRemoteTestingService) BeforeMethod(org.testng.annotations.BeforeMethod)

Example 4 with InitializeApplicationRemoteTestingService

use of org.mifos.test.acceptance.remote.InitializeApplicationRemoteTestingService in project head by mifos.

the class CenterTest method setUp.

@Override
@SuppressWarnings("PMD.SignatureDeclareThrowsException")
// one of the dependent methods throws Exception
@BeforeMethod(alwaysRun = true)
public void setUp() throws Exception {
    super.setUp();
    centerTestHelper = new CenterTestHelper(selenium);
    questionTestHelper = new QuestionGroupTestHelper(selenium);
    clientTestHelper = new ClientTestHelper(selenium);
    groupTestHelper = new GroupTestHelper(selenium);
    new InitializeApplicationRemoteTestingService().reinitializeApplication(selenium);
}
Also used : QuestionGroupTestHelper(org.mifos.test.acceptance.framework.testhelpers.QuestionGroupTestHelper) GroupTestHelper(org.mifos.test.acceptance.framework.testhelpers.GroupTestHelper) QuestionGroupTestHelper(org.mifos.test.acceptance.framework.testhelpers.QuestionGroupTestHelper) ClientTestHelper(org.mifos.test.acceptance.framework.testhelpers.ClientTestHelper) InitializeApplicationRemoteTestingService(org.mifos.test.acceptance.remote.InitializeApplicationRemoteTestingService) CenterTestHelper(org.mifos.test.acceptance.framework.testhelpers.CenterTestHelper) BeforeMethod(org.testng.annotations.BeforeMethod)

Aggregations

InitializeApplicationRemoteTestingService (org.mifos.test.acceptance.remote.InitializeApplicationRemoteTestingService)4 BeforeMethod (org.testng.annotations.BeforeMethod)3 AppLauncher (org.mifos.test.acceptance.framework.AppLauncher)1 InitializeApplicationPage (org.mifos.test.acceptance.framework.InitializeApplicationPage)1 CenterTestHelper (org.mifos.test.acceptance.framework.testhelpers.CenterTestHelper)1 ClientTestHelper (org.mifos.test.acceptance.framework.testhelpers.ClientTestHelper)1 GroupTestHelper (org.mifos.test.acceptance.framework.testhelpers.GroupTestHelper)1 QuestionGroupTestHelper (org.mifos.test.acceptance.framework.testhelpers.QuestionGroupTestHelper)1