1. 程式人生 > >Scala使用JUnit4單元測試

Scala使用JUnit4單元測試

使用 AS val port nds junit4 junit span true

在項目開發中在很多地方都要做單元測試,在做Spark項目時使用Scala開發.所以總結一下Scala中的單元測試:

在Maven pom文件中添加依賴:

<dependency>
  <groupId>junit</groupId>
  <artifactId>junit</artifactId>
  <version>4.11</version>
  <scope>test</scope>
</dependency>
import org.junit.{Assert, Test}

@Test
class CrawlTest extends Assert{ @Test def hel:Unit = { val someValue = true assert(someValue == true) } }

運行:

使用Intelij IDEA,把光標點擊在方法名那一行上,右鍵,run。

Scala使用JUnit4單元測試