美文网首页Scala
scalaTest的使用

scalaTest的使用

作者: breeze_lsw | 来源:发表于2016-08-31 22:36 被阅读1102次

配置

修改pom.xml,添加以下内容

<!--依赖-->
<dependency>
  <groupId>org.scalatest</groupId>
  <artifactId>scalatest_2.11</artifactId>
  <version>3.0.0</version>
  <scope>test</scope>
</dependency>

<!--插件-->
<plugin>
    <groupId>org.scalatest</groupId>
    <artifactId>scalatest-maven-plugin</artifactId>
    <version>1.0</version>
    <configuration>
        <reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
        <junitxml>.</junitxml>
        <filereports>WDF TestSuite.txt</filereports>
    </configuration>
    <executions>
        <execution>
            <id>test</id>
            <goals>
                <goal>test</goal>
            </goals>
        </execution>
    </executions>
</plugin>

<!--测试代码和文件-->
<testSourceDirectory>${basedir}/src/test/scala</testSourceDirectory>

一个简单的例子

import org.scalatest.FunSuite
class SetFuncSuite extends FunSuite {

  //差集
  test("Test difference") {
    val a = Set("a", "b", "a", "c")
    val b = Set("b", "d")
    assert(a -- b === Set("a", "c"))
  }

  //交集
  test("Test intersection") {
    val a = Set("a", "b", "a", "c")
    val b = Set("b", "d")
    assert(a.intersect(b) === Set("b"))
  }

  //并集
  test("Test union") {
    val a = Set("a", "b", "a", "c")
    val b = Set("b", "d")
    assert(a ++ b === Set("a", "b", "c", "d"))
  }
}

在IDEA里直接运行

这里写图片描述

程序打包时会自动进行测试

mvn clean package

如果测试通过,

这里写图片描述

如果测试不通过,则会打包失败,比如

  test("Test difference") {
    val a = Set("a", "b", "a", "c")
    val b = Set("b", "d")
    //应该等于Set("a","b")
    assert(a -- b === Set("b", "c"))
  }
这里写图片描述

相关文章

  • 编写Spark测试用例

    使用scalaTest工具,用法参考:scalaTest的使用 代码 src/test/tool/LocalSpa...

  • scalaTest的使用

    配置 修改pom.xml,添加以下内容 一个简单的例子 在IDEA里直接运行 程序打包时会自动进行测试 如果测试通...

  • squbs-8.测试squbs应用

    原文地址:Testing squbs Applications squbs上所有的测试使用ScalaTest 2....

  • [翻译]squbs官网之10 测试squbs应用

    squbs支持Scala的ScalaTest 3.X,TestNG和Java测试框架的JUnit。 依赖 要使用文...

  • ScalaTest的测试风格

    ScalaTest几乎已经成为Scala语言默认的测试框架,而在JVM平台下,无论是否使用Scala进行开发,我认...

  • iconfont的使用(下载使用)

    1、下载文件 2、在生命周期中引入项目 beforeCreate () { var domModule = ...

  • Gson的使用--使用注解

    Gson为了简化序列化和反序列化的过程,提供了很多注解,这些注解大致分为三类,我们一一的介绍一下。 自定义字段的名...

  • 记录使用iframe的使用

    默认记录一下----可以说 这是我第一次使用iframe 之前都没有使用过; 使用方式: 自己开发就用了这几个属...

  • with的使用

    下面例子可以具体说明with如何工作: 运行代码,输出如下

  • this的使用

    什么是this? this是一个关键字,这个关键字总是返回一个对象;简单说,就是返回属性或方法“当前”所在的对象。...

网友评论

    本文标题:scalaTest的使用

    本文链接:https://www.haomeiwen.com/subject/burcettx.html