Skip to content

Instantly share code, notes, and snippets.

@e2kaneko
Created September 23, 2012 06:19
Show Gist options
  • Save e2kaneko/3769066 to your computer and use it in GitHub Desktop.
Save e2kaneko/3769066 to your computer and use it in GitHub Desktop.
Groovy Test
package com.e2info.groovy;
import groovy.util.GroovyTestCase;
import com.e2info.groovy.Groovy;
class GroovyTest extends GroovyTestCase {
void testPlay() {
Groovy groovy = new Groovy()
assertEquals(groovy.play(), "check it!")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment