ということで、groovyのテストかいてみます。
コード
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 | |
String play(){ | |
return "check it!" | |
} |
テスト
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!") | |
} | |
} |
実行 グリーン。
今日のブログもう終わってしまった…つづく!
かねこ(-∧-;)
0 件のコメント:
コメントを投稿