scala 测试类

class NetworkUtilTest extends FunSuite with Matchers {

  test("testIp2Int") {
    val ip = NetworkUtil.ip2Int("192.168.120.60")
    ip should be(1014540480)
  }
}
    <dependency>
            <groupId>org.scalatest</groupId>
            <artifactId>scalatest_2.10</artifactId>
            <version>3.0.3</version>
            <!--<scope>test</scope>-->
        </dependency>

 

posted @ 2017-08-07 09:43  牵牛花  阅读(498)  评论(0编辑  收藏  举报