加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

scala – Specs2“value in不是String的成员”

发布时间:2020-12-16 09:08:12 所属栏目:安全 来源:网络整理
导读:我无法编译简单的specs2 hello world示例: import org.junit.runner.RunWithimport org.specs2.Specificationimport org.specs2.runner.JUnitRunnerimport org.specs2.mutable._@RunWith(classOf[JUnitRunner])class SampleTest extends Specification { "T
我无法编译简单的specs2 hello world示例:

import org.junit.runner.RunWith
import org.specs2.Specification
import org.specs2.runner.JUnitRunner

import org.specs2.mutable._

@RunWith(classOf[JUnitRunner])
class SampleTest extends Specification {

  "The 'Hello world' string" should {
    "contain 11 characters" in {
      "Hello world" must have size(11)
    }
    "start with 'Hello'" in {
      "Hello world" must startWith("Hello")
    }
    "end with 'world'" in {
      "Hello world" must endWith("world")
    }
  }
}

得到错误:

:compileTestScala [ant:scalac] Element ‘/home/~~~~/workspaces/~~~~/build/resources/main’ does not exist.
[ant:scalac] /home/~~~~/workspaces/~~~~/src/test/scala/com/~~~~/ingestion/SampleTest.scala:16:
error: value in is not a member of String
[ant:scalac] “contain 11 characters” in {
[ant:scalac] one error found
:compileTestScala FAILED

我正在使用Gradle(因此是@RunWith注释).使用specs2版本’org.specs2:specs2_2.10:2.4.15′

apply plugin: 'java'
apply plugin: 'scala'

repositories {
    mavenCentral()
    maven {
        url "http://dl.bintray.com/scalaz/releases"
    }
}

configurations {
    provided
    compile.extendsFrom provided
}

dependencies {
    provided 'org.apache.hadoop:hadoop-client:2.2.0'

    compile 'org.scala-lang:scala-library:2.10.0','com.twitter:scalding-core_2.10:0.12.0','com.github.scopt:scopt_2.10:3.2.0','org.json4s:json4s-jackson_2.10:3.2.11','args4j:args4j:2.0.29','joda-time:joda-time:2.4','log4j:log4j:1.2.17','org.apache.commons:commons-compress:1.9','org.apache.commons:commons-lang3:3.3.2','org.codehaus.jackson:jackson-core-asl:1.9.13'


    testCompile 'junit:junit:4.11','org.mockito:mockito-all:1.9.5','org.specs2:specs2_2.10:2.4.15'
}

jar {
    dependsOn configurations.runtime
    from {
        (configurations.compile - configurations.provided).collect {
            it.isDirectory() ? it : zipTree(it) 
        }
    }
}

解决方法

您需要为该语法扩展org.specs2.mutable.Specification而不是org.specs2.Specification.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读