object TestModule

Source
TestModule.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TestModule
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. trait JavaModuleBase extends BaseClass with BspModule
  2. trait Junit4 extends BaseClass with TestModule

    TestModule that uses JUnit 4 Framework to run tests.

    TestModule that uses JUnit 4 Framework to run tests. You may want to provide the junit dependency explicitly to use another version.

  3. trait Junit5 extends BaseClass with TestModule

    TestModule that uses JUnit 5 Framework to run tests.

    TestModule that uses JUnit 5 Framework to run tests. You may want to provide the junit dependency explicitly to use another version.

  4. trait Munit extends BaseClass with TestModule

    TestModule that uses MUnit to run tests.

    TestModule that uses MUnit to run tests. You need to provide the munit dependencies yourself.

  5. trait ScalaModuleBase extends BaseClass with Module
  6. trait ScalaTest extends BaseClass with TestModule

    TestModule that uses ScalaTest Framework to run tests.

    TestModule that uses ScalaTest Framework to run tests. You need to provide the scalatest dependencies yourself.

  7. trait Specs2 extends BaseClass with ScalaModuleBase with TestModule

    TestModule that uses Specs2 Framework to run tests.

    TestModule that uses Specs2 Framework to run tests. You need to provide the specs2 dependencies yourself.

  8. trait TestNg extends BaseClass with TestModule

    TestModule using TestNG Framework to run tests.

    TestModule using TestNG Framework to run tests. You need to provide the testng dependency yourself.

  9. case class TestResultExtra(suiteName: String, testName: String, result: TestResult) extends Product with Serializable
  10. trait Utest extends BaseClass with TestModule

    TestModule that uses UTest Framework to run tests.

    TestModule that uses UTest Framework to run tests. You need to provide the utest dependencies yourself.

  11. trait Weaver extends BaseClass with TestModule

    TestModule that uses Weaver to run tests.

    TestModule that uses Weaver to run tests. You need to provide the weaver dependencies yourself. https://github.com/disneystreaming/weaver-test

  12. trait ZioTest extends BaseClass with TestModule

    TestModule that uses ZIO Test Framework to run tests.

    TestModule that uses ZIO Test Framework to run tests. You need to provide the zio-test dependencies yourself.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. def genTestXmlReport(results0: Seq[TestResult], out: Path): Unit
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def handleResults(doneMsg: String, results: Seq[TestResult], ctx: Option[Env]): Result[(String, Seq[TestResult])]
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  18. def toString(): String
    Definition Classes
    AnyRef → Any
  19. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  20. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  21. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. def handleResults(doneMsg: String, results: Seq[TestResult]): Result[(String, Seq[TestResult])]
    Annotations
    @deprecated
    Deprecated

    (Since version Mill after 0.10.2) Use other overload instead

Inherited from AnyRef

Inherited from Any

Ungrouped