Skip to content

spuklo/junit-vw-runner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fixed JUnit runner

No more tests failing on build server!

Usage

@RunWith(JUnitVWRunner.class)
public class SampleUsage {

    @Test
    public void should_fail_only_in_friendly_environment() {
        assertTrue(1 == 2);
    }

    @Test
    public void should_pass_regardless_of_environment() {
        assertTrue(2 == 2);
    }
}

Credits

Heavily inspired by https://github.com/hmlb/phpunit-vw and https://github.com/auchenberg/volkswagen

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages