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>
原文地址:https://www.cnblogs.com/rocky-AGE-24/p/7297654.html