abstract class DirectTest extends AnyRef

Test with code which is embedded as a string.

DirectTest allows for more complete control over settings, compiler configuration, sequence of events, etc. than does partest alone.

Tests must define code and show(). Minimally: def show() = assert(compile())

There are helper methods for creating settings and invoking a (newly constructed) compiler.

Source
DirectTest.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DirectTest
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new DirectTest()

Abstract Value Members

  1. abstract def code: String
  2. abstract def show(): Unit

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from DirectTest toany2stringadd[DirectTest] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (DirectTest, B)
    Implicit
    This member is added by an implicit conversion from DirectTest toArrowAssoc[DirectTest] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. def compilationUnits(global: Global)(sourceCodes: String*): List[nsc.Global.CompilationUnit]
  9. def compile(args: String*): Boolean
  10. def compileString(global: Global)(sourceCode: String): Boolean
  11. def ensuring(cond: (DirectTest) => Boolean, msg: => Any): DirectTest
    Implicit
    This member is added by an implicit conversion from DirectTest toEnsuring[DirectTest] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (DirectTest) => Boolean): DirectTest
    Implicit
    This member is added by an implicit conversion from DirectTest toEnsuring[DirectTest] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: => Any): DirectTest
    Implicit
    This member is added by an implicit conversion from DirectTest toEnsuring[DirectTest] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): DirectTest
    Implicit
    This member is added by an implicit conversion from DirectTest toEnsuring[DirectTest] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  17. def extraSettings: String
  18. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  19. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from DirectTest toStringFormat[DirectTest] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  20. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. def javaCompilationUnits(global: Global)(sourceCodes: String*): collection.immutable.List[nsc.Global.CompilationUnit]
  24. def main(args: Array[String]): Unit

    Constructor/main body *

  25. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  26. def newCompiler(settings: Settings): Global
  27. def newCompiler(args: String*): Global
  28. def newJavaSources(codes: String*): List[BatchSourceFile]
  29. def newSettings(args: List[String]): Settings
  30. def newSources(codes: String*): List[BatchSourceFile]
  31. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  32. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  33. def reporter(settings: Settings): Reporter
  34. def settings: Settings
  35. def sourceFilesToCompiledUnits(global: Global)(files: List[SourceFile]): collection.immutable.List[nsc.Global.CompilationUnit]
  36. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  37. def testOutput: reflect.io.Directory
  38. def testPath: reflect.io.File
  39. def testUnderJavaAtLeast[A](version: String)(yesRun: => A): TestUnderJavaAtLeast[A]

    Run a test only if the current java version is at least the version specified.

  40. def toString(): String
    Definition Classes
    AnyRef → Any
  41. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  42. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  43. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  44. def withRun[T](global: Global)(f: (Run) => T): T

Deprecated Value Members

  1. def [B](y: B): (DirectTest, B)
    Implicit
    This member is added by an implicit conversion from DirectTest toArrowAssoc[DirectTest] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromDirectTest to any2stringadd[DirectTest]

Inherited by implicit conversion StringFormat fromDirectTest to StringFormat[DirectTest]

Inherited by implicit conversion Ensuring fromDirectTest to Ensuring[DirectTest]

Inherited by implicit conversion ArrowAssoc fromDirectTest to ArrowAssoc[DirectTest]

Ungrouped