Created
September 23, 2012 06:19
-
-
Save e2kaneko/3769066 to your computer and use it in GitHub Desktop.
Groovy Test
This file contains hidden or 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
| 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