Модульное тестирование в android выполняется с вариацией xUnit, известной как JUnit. Если вы используете JUnit 4.0, используйте следующую аннотацию:
@AfterClass //Will only execute once after all the tests in the class have exhausted
@After //Will run after every test
Если вы используете JUnit 5.0, используйте следующую аннотацию:
@AfterEach //Will run after every test
@AfterAll //Will only execute once after all the tests in the class have exhausted