You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had to do some changes to a kata translation. The link to the kumite is in Additional context. Previously, I used groovy's built-in assert statement which I replaced with org.junit.jupiter.api.Assertions.assertEquals. I also changed the @Test annotations from org.junit.Test to org.junit.jupiter.api.Test.
To Reproduce
(I'm not sure whether this might work, but this is what I did)
Create a Kumite in Groovy (org.junit.Test should be automatically imported in the Tests Cases)
Write tests using assert
Publish it
Edit the Kumite
Replace import org.junit.Test with import org.junit.jupiter.api.* and import static org.junit.jupiter.api.Assertions.assertEquals
Describe the bug
I had to do some changes to a kata translation. The link to the kumite is in
Additional context
. Previously, I used groovy's built-in assert statement which I replaced withorg.junit.jupiter.api.Assertions.assertEquals
. I also changed the@Test
annotations fromorg.junit.Test
toorg.junit.jupiter.api.Test
.To Reproduce
(I'm not sure whether this might work, but this is what I did)
org.junit.Test
should be automatically imported in the Tests Cases)assert
import org.junit.Test
withimport org.junit.jupiter.api.*
andimport static org.junit.jupiter.api.Assertions.assertEquals
Expected behavior
The yellow message in
Screenshots
to not appearScreenshots
Browser
Additional context
Kumite
The text was updated successfully, but these errors were encountered: