Not to restart app after each testcase

Hi all,

Does anyone know how to achieve don’t restart app after each test case finishing? That is don’t close then restart app between each test case in one test suite. Thank you!

In TestListener

@BeforeTestSuite
def beforeTestSuite(TestSuiteContext testSuiteContext) {
isTestSuite = true
Mobile.startApplication(Mobile.startApplication('apk_path', false), false)
}
@AfterTestSuite
def afterTestSuite(TestSuiteContext testSuiteContext) {
  isTestSuite = false
       Mobile.closeApplication()
}