CodeNarc web console

subscribe to the feed Subscribe
to this
site
embed in your blog Embed
this
script
JunitRules in 0.12 (via #meetcodenarc)
tweet this snippet Tweet
this
script

To embed this script in your site, just drop the content below where you want to embed it.

JunitRules in 0.12

Published 1 year ago by HamletDRC with tags junit 0.12
Actions  ➤ Edit in console Back to console Show/hide line numbers View recent scripts
class MyTest extends GroovyTestCase {

    public void testNoop() {
        // sanity test
    }

    public void testBoolean() {
        assertEquals(true, someMethod())
        assertEquals(false, obj.property)
    }

    public void testAsserts() {
        assert true == method()
    }    
}

Recent scripts