Packages

  • package root
    Definition Classes
    root
  • package zio
    Definition Classes
    root
  • package test

    _ZIO Test_ is a featherweight testing library for effectful programs.

    _ZIO Test_ is a featherweight testing library for effectful programs.

    The library imagines every spec as an ordinary immutable value, providing tremendous potential for composition. Thanks to tight integration with ZIO, specs can use resources (including those requiring disposal), have well- defined linear and parallel semantics, and can benefit from a host of ZIO combinators.

    import zio.test._
    import zio.test.environment.Live
    import zio.clock.nanoTime
    import Assertion.isGreaterThan
    
    object MyTest extends DefaultRunnableSpec {
      def spec = suite("clock")(
        testM("time is non-zero") {
          assertM(Live.live(nanoTime))(isGreaterThan(0))
        }
      )
    }
    Definition Classes
    zio
  • class SmartAssertMacros extends AnyRef
    Definition Classes
    test
  • AST
  • ASTConverter
  • AssertAST
  • IsConstructor
  • Matcher
  • MethodCall
  • PositionContext
  • UnwrapImplicit

object Matcher

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

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. val all: List[ASTConverter]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. val asInstanceOf: ASTConverter
  7. val asLeft: ASTConverter
  8. val asRight: ASTConverter
  9. val asSome: ASTConverter
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  11. val containsOption: ASTConverter
  12. val containsSeq: ASTConverter
  13. val containsString: ASTConverter
  14. val eitherType: scala.reflect.macros.Universe.Type
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. val equalTo: ASTConverter
  17. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  18. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  19. val get: ASTConverter
  20. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. val greaterThan: ASTConverter
  22. val greaterThanOrEqualTo: ASTConverter
  23. val hasAt: ASTConverter
  24. val hasKey: ASTConverter
  25. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  26. val head: ASTConverter
  27. val isDefinedOption: ASTConverter
  28. val isEmptyIterable: ASTConverter
  29. val isEmptyOption: ASTConverter
  30. val isEven: ASTConverter
  31. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  32. val isInstanceOf: ASTConverter
  33. val isNonEmptyIterable: ASTConverter
  34. val isOdd: ASTConverter
  35. val leftGet: ASTConverter
  36. val lessThan: ASTConverter
  37. val lessThanOrEqualTo: ASTConverter
  38. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  39. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  40. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  41. val rightGet: ASTConverter
  42. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  43. def toString(): String
    Definition Classes
    AnyRef → Any
  44. def unapply(method: Method): Option[(AST, AssertAST, (Int, Int))]
  45. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  46. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  47. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped