Jinseong Hwang
Jinseong Hwang
```kotlin class TagTest : LocalTest({ should("test") { } }) abstract class LocalTest(body: ShouldSpec.() -> Unit) : ShouldSpec(body) { override fun tags(): Set { return setOf(Tag("local")) } } ``` I found...
Your suggestion, adding constant for the tag, is nice for me, but I partially agree with your opinion. From my perspective, there's pros and cons for this pattern. **Pros for...
Thank you for understanding, @Kantis !
잘 읽었습니다!