Package

munit

Permalink

package munit

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. munit
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait Assertions extends CompileErrorMacro

    Permalink
  2. class Clue[+T] extends Serializable

    Permalink
  3. class Clues extends AnyRef

    Permalink
  4. class ComparisonFailException extends ComparisonFailure with FailExceptionLike[ComparisonFailException]

    Permalink

    The base exception for all comparison failures.

    The base exception for all comparison failures.

    This class exists so that it can extend org.junit.ComparisonFailure, which is recognised by IntelliJ so that users can optionally compare the obtained/expected values in a GUI diff explorer.

  5. class FailException extends AssertionError with FailExceptionLike[FailException] with Serializable

    Permalink
  6. trait FailExceptionLike[T <: AssertionError] extends AnyRef

    Permalink

    The base class for all MUnit FailExceptions.

    The base class for all MUnit FailExceptions.

    Implementation note: this class exists so that we could fix the issue https://youtrack.jetbrains.com/issue/SCL-18255 In order to support the JUnit comparison GUI in IntelliJ we need to extend org.junit.ComparisonFailure, which is a class and not an interface. We can't make munit.FailException extend org.junit.ComparisonFailure since not all "fail exceptions" are "comparison failures". Instead, we introduced munit.ComparisionFailException, which extends org.junit.ComparisonFailure and this base trait. Internally, MUnit should match against FailExceptionLike[_] instead of munit.FailException directly.

  7. class FailSuiteException extends FailException

    Permalink
  8. class Framework extends JUnitFramework

    Permalink
  9. trait FunFixtures extends AnyRef

    Permalink
  10. abstract class FunSuite extends Suite with Assertions with FunFixtures with TestOptionsConversions with TestTransforms with SuiteTransforms with ValueTransforms

    Permalink
  11. class GenericAfterEach[T] extends Serializable

    Permalink
  12. class GenericBeforeEach[T] extends Serializable

    Permalink
  13. class GenericTest[T] extends Serializable

    Permalink

    Metadata about a single test case.

  14. class IgnoreSuite extends Annotation with Annotation with ClassfileAnnotation

    Permalink
  15. final class Location extends Annotation with Serializable

    Permalink
  16. class MUnitRunner extends Runner with Filterable with Configurable

    Permalink
  17. trait PlatformSuite extends AnyRef

    Permalink
  18. trait Printable extends AnyRef

    Permalink

    Override this class to customize the default pretty-printer.

  19. trait Printer extends AnyRef

    Permalink

    Implement this trait to customize the default printer

  20. abstract class Suite extends PlatformSuite

    Permalink

    The base class for all test suites.

    The base class for all test suites. Extend this class if you don't need the functionality in FunSuite.

    Annotations
    @RunWith()
  21. trait SuiteTransforms extends AnyRef

    Permalink
  22. class Tag extends munit.internal.junitinterface.Tag with Annotation with Serializable

    Permalink
  23. final class TestOptions extends Serializable

    Permalink

    Options used when running a test.

    Options used when running a test. It can be built implicitly from a String (@see munit.TestOptionsConversions)

  24. trait TestOptionsConversions extends AnyRef

    Permalink
  25. trait TestTransforms extends AnyRef

    Permalink
  26. trait ValueTransforms extends AnyRef

    Permalink

Value Members

  1. object Assertions extends Assertions

    Permalink
  2. object Clue extends ClueMacro with Serializable

    Permalink
  3. object EmptyPrinter extends Printer

    Permalink

    Default printer that does not customize the pretty-printer

  4. val Fail: Tag

    Permalink
  5. val Flaky: Tag

    Permalink
  6. val Ignore: Tag

    Permalink
  7. object Location extends LocationMacro with Serializable

    Permalink
  8. object MUnitRunner

    Permalink
  9. val Only: Tag

    Permalink
  10. val Slow: Tag

    Permalink
  11. object TestOptions extends TestOptionsConversions with Serializable

    Permalink
  12. object TestValues

    Permalink

    Values that have special treatment when evaluating values produced by tests.

  13. package internal

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped