Skip to content

Commit

Permalink
fix: Disabled annotation on JUnit5RobolectricSandboxBuilderTest
Browse files Browse the repository at this point in the history
  • Loading branch information
warnyul committed Mar 8, 2024
1 parent 4fb9c03 commit 5edcc48
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ internal class JUnit5RobolectricTestRunner(clazz: Class<*>) :
frameworkMethod: FrameworkMethod,
bootstrappedMethod: Method,
) {
logger.info {
logger.trace {
"runBeforeTest ${bootstrappedMethod.declaringClass.simpleName}::${bootstrappedMethod.name}"
}
super.beforeTest(sdkEnvironment, frameworkMethod, bootstrappedMethod)
}

fun runAfterTest(frameworkMethod: FrameworkMethod, bootstrappedMethod: Method) {
logger.info {
logger.trace {
"runAfterTest${bootstrappedMethod.declaringClass.simpleName}::${bootstrappedMethod.name}"
}
try {
Expand Down

0 comments on commit 5edcc48

Please sign in to comment.