标签:intel def div 很多 单元测试 pen eval mave dep
在项目开发中在很多地方都要做单元测试,在做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。
标签:intel def div 很多 单元测试 pen eval mave dep
原文地址:https://www.cnblogs.com/itboys/p/9151913.html