JUnit4でScalaをテスト

Ken published on
1 min, 128 words

Categories: Programming

■Using the Scala IDE for Eclipse with JUnit | The Scala Programming Language http://www.scala-lang.org/node/363 ここに載ってる例だとエラーが発生すると思う。

簡単な例を載せておく。

package example.junit

import org.junit._
import org.junit.Assert._

class TestJUnit {
	@Test
	def greeting():Unit = {
		val hello = new Hello()
		assertEquals("Hello!", hello.greeting)
	}
}

TestNGってのもあるし、そっちに移行しようかな? 今のところ、たいしたテストコード書いてるわけじゃないから、どっちでも問題ないんだけど。