- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们正在为一些自动化的 Android UI 测试组合一个 SBT Build。目的是启动 Appium 服务器,启动 Android 模拟器,运行测试,然后关闭所有内容。我们已经为“测试”SBT 命令工作了:
(test in Test) <<=
(stopVirtual, (test in Test), saveProcessVirtualKey)
{
(stop, test, saveProcessVirtualKey) => test.dependsOn(saveProcessVirtualKey).doFinally(stop)
}
(testOnly in Test) <<=
(stopVirtual, (testOnly in Test), saveProcessVirtualKey)
{
(stop, test, saveProcessVirtualKey) => test.dependsOn(saveProcessVirtualKey).doFinally(stop)
}
最佳答案
sbt 已内置 test setup and cleanup .
Specify setup and cleanup actions using
Tests.Setup
andTests.Cleanup
. These accept either a function of type() => Unit
or a function of typeClassLoader => Unit
. The variant that accepts a ClassLoader is passed the class loader that is (or was) used for running the tests. It provides access to the test classes as well as the test framework classes.
Test / testOptions += Tests.Setup( () => println("Setup") )
Test / testOptions += Tests.Cleanup( () => println("Cleanup") )
关于SBT - 如何使 InputTask 依赖于一项任务并最终执行另一项任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25893437/
我正在我的 SBT 项目中创建一些自定义任务,需要为此调用其他任务。 我如何从我的任务内部调用 inputTasks 并支持他们一些输入? 最佳答案 由于您可以围绕此考虑您自己的任务,因此我假设您正在
我们正在为一些自动化的 Android UI 测试组合一个 SBT Build。目的是启动 Appium 服务器,启动 Android 模拟器,运行测试,然后关闭所有内容。我们已经为“测试”SBT 命
我正在使用 Scala 2.11.1 和 sbt 0.13.5。 我有一个 sbt 插件,它包含一个帮助函数来创建输入任务,如下所示(实现被剥离,因为它与问题无关): def register(nam
我是一名优秀的程序员,十分优秀!