This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@SET USE_TMUX=false | |
@SET WSLENV=USE_TMUX/u | |
@wsl.exe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import io.mockk.Matcher | |
import io.mockk.MockKMatcherScope | |
import org.apache.commons.lang3.builder.EqualsBuilder | |
class ReflectedEqualityMatcher<T>( | |
private val expected: T | |
) : Matcher<T> { | |
override fun match(arg: T?): Boolean { | |
if (arg == null) { |