作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图让 uTest 与 ScalaJS 和 SBT 一起工作。 SBT 正在编译文件,并且 uTest 正在运行,但它只是忽略了我的测试。尽我所能,我找不到我的代码和教程示例之间的任何区别。
构建.sbt:
enablePlugins(ScalaJSPlugin)
name := "Scala.js Stuff"
scalaVersion := "2.11.5" // or any other Scala version >= 2.10.2
scalaJSStage in Global := FastOptStage
libraryDependencies += "com.lihaoyi" %% "utest" % "0.3.0"
testFrameworks += new TestFramework("utest.runner.Framework")
package com.mysite.jovian
import utest._
object GeometryTest extends TestSuite {
def tests = TestSuite {
'addPoints {
val p: Point = new Point(3,4)
val q: Point = new Point(4,3)
val expected: Point = new Point(8,8)
assert(p.plus(q).equals(expected))
throw new Exception("foo")
}
'fail {
assert(1==2)
}
}
}
> reload
[info] Loading project definition from /Users/me/Dropbox (Personal)/mysite/flocks/project
[info] Set current project to Scala.js Stuff (in build file:/Users/me/Dropbox%20(Personal)/mysite/flocks/)
> test
[success] Total time: 1 s, completed Mar 6, 2015 7:01:41 AM
> test-only -- com.mysite.jovian.GeometryTest
[info] Passed: Total 0, Failed 0, Errors 0, Passed 0
[info] No tests to run for test:testOnly
[success] Total time: 1 s, completed Mar 6, 2015 7:01:49 AM
> test
[info] Compiling 1 Scala source to /Users/me/Dropbox (Personal)/mysite/flocks/target/scala-2.11/test-classes...
[error] /Users/me/Dropbox (Personal)/mysite/flocks/src/test/scala/com/mysite/jovian/GeometryTest.scala:21: not found: value blablablablabla
[error] blablablablabla
[error] ^
[error] one error found
[error] (test:compile) Compilation failed
[error] Total time: 1 s, completed Mar 6, 2015 7:03:54 AM
最佳答案
你的错误在于对 uTest 的依赖:
libraryDependencies += "com.lihaoyi" %% "utest" % "0.3.0"
%%%
而不是
%%
, 像这样:
libraryDependencies += "com.lihaoyi" %%% "utest" % "0.3.0"
% "test"
一个结束:
libraryDependencies += "com.lihaoyi" %%% "utest" % "0.3.0" % "test"
关于scala - 无法让 uTest 查看我的测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28898445/
我试图让 uTest 与 ScalaJS 和 SBT 一起工作。 SBT 正在编译文件,并且 uTest 正在运行,但它只是忽略了我的测试。尽我所能,我找不到我的代码和教程示例之间的任何区别。 构建.
我有一个简单的 UITest,它点击工具栏上的某个项目 100 次,在没有背景图像的情况下运行测试始终通过,但是当我添加背景图像时,我收到内存警告,然后测试失败。我尝试了多种显示图像的解决方案,大多数
我是 UITesting 新手,我还没有在 UITesting 基本文件中编写任何测试。尽管如此,在没有更多上下文的情况下它还是失败了,如何修复它?即使它没有显示单元测试文件中显示的红十字符号。 我创
第一次尝试使用 Spring Boot 创建项目,数据。我无法在实体管理器中运行 NullPointerException 项目,但服务测试运行良好。 主类: @SpringBootApplicati
我是一名优秀的程序员,十分优秀!