Skip to content

Instantly share code, notes, and snippets.

@bountin
Last active April 4, 2018 13:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bountin/11fd8bf7df48ae7906d1d3cd8fe51869 to your computer and use it in GitHub Desktop.
Save bountin/11fd8bf7df48ae7906d1d3cd8fe51869 to your computer and use it in GitHub Desktop.
Zohhak Issue
import com.googlecode.zohhak.api.TestWith;
import com.googlecode.zohhak.api.runners.ZohhakRunner;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.assertj.core.api.Assertions.*;
@RunWith(ZohhakRunner.class)
public class FooTest {
@TestWith({ "param" })
public void testWithZohhak(String param) {
assertThat(param).isEqualTo("param");
}
@Test
public void normalTest() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment