使用FunSuite和Intellj执行单个测试

时间:2018-04-22 11:27:02

标签: scala intellij-idea

我没有使用FunSuite和IntelliJ,我想从测试类中执行单独测试但是我无法选择我想要执行的测试,有没有选择这样做?

@RunWith(classOf[JUnitRunner])
class MyTestIntegrationTest extends FunSuite with BeforeAndAfter with BeforeAndAfterAll with StreamingActionBase {

  override def beforeAll(): Unit = {
  }

  before {
  }

  after {
  }

  test("test1"){
  ..
  }

  test("testN"){
  ..
  }

我希望能够执行一个测试,而不是所有类的测试。

0 个答案:

没有答案