Trait

io.github.olib963.javatest_scala

AllJavaTestSyntax

Related Doc: package javatest_scala

Permalink

trait AllJavaTestSyntax extends JavaTestSyntax with BenchmarkSyntax with EventuallySyntax with FixtureSyntax with MatcherSyntax

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AllJavaTestSyntax
  2. MatcherSyntax
  3. FixtureSyntax
  4. EventuallySyntax
  5. BenchmarkSyntax
  6. JavaTestSyntax
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def benchmark(runners: TestRunner*)(implicit formatter: DurationFormat): TestRunner

    Permalink
    Definition Classes
    BenchmarkSyntax
  6. def benchmark(all: Seq[Testable])(implicit formatter: (Duration) ⇒ String): Seq[Testable]

    Permalink
    Definition Classes
    BenchmarkSyntax
  7. def benchmark(test: Testable)(implicit formatter: DurationFormat): Testable

    Permalink
    Definition Classes
    BenchmarkSyntax
  8. def benchmark(test: TestSuite)(implicit formatter: DurationFormat): TestSuite

    Permalink
    Definition Classes
    BenchmarkSyntax
  9. def benchmark(test: Test)(implicit formatter: DurationFormat): Test

    Permalink
    Definition Classes
    BenchmarkSyntax
  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  11. def contains[A](element: A): Matcher[Seq[A]]

    Permalink
    Definition Classes
    MatcherSyntax
  12. def containsString(subString: String): Matcher[String]

    Permalink
    Definition Classes
    MatcherSyntax
  13. def destructibleFixture[Fixture](create: ⇒ Try[Fixture])(destroy: (Fixture) ⇒ Try[Unit]): FixtureDefinition[Fixture]

    Permalink
    Definition Classes
    FixtureSyntax
  14. def endsWith(suffix: String): Matcher[String]

    Permalink
    Definition Classes
    MatcherSyntax
  15. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  17. def eventually(fn: ⇒ Assertion)(implicit config: EventuallyConfig): Assertion

    Permalink
    Definition Classes
    EventuallySyntax
  18. def failIfLongerThan(duration: Duration)(test: Test)(implicit formatter: DurationFormat): Test

    Permalink
    Definition Classes
    BenchmarkSyntax
  19. def fixture[Fixture](create: ⇒ Try[Fixture]): FixtureDefinition[Fixture]

    Permalink
    Definition Classes
    FixtureSyntax
  20. def fixtureRunner[Fixture](name: String, fixtureDefinition: FixtureDefinition[Fixture])(runnerFn: (Fixture) ⇒ TestRunner): TestRunner

    Permalink
    Definition Classes
    FixtureSyntax
  21. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  22. def hasLength(length: Int): Matcher[String]

    Permalink
    Definition Classes
    MatcherSyntax
  23. def hasSize[A](size: Int): Matcher[Iterable[A]]

    Permalink
    Definition Classes
    MatcherSyntax
  24. def hasType[T](implicit expectedClass: ClassTag[T]): Matcher[Any]

    Permalink
    Definition Classes
    MatcherSyntax
  25. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  26. val isBlankString: Matcher[String]

    Permalink
    Definition Classes
    MatcherSyntax
  27. def isDefined[A]: Matcher[Option[A]]

    Permalink
    Definition Classes
    MatcherSyntax
  28. def isEmpty[A]: Matcher[Seq[A]]

    Permalink
    Definition Classes
    MatcherSyntax
  29. def isEmptyOption[A]: Matcher[Option[A]]

    Permalink
    Definition Classes
    MatcherSyntax
  30. val isEmptyString: Matcher[String]

    Permalink
    Definition Classes
    MatcherSyntax
  31. def isEqualTo[A](value: A): Matcher[A]

    Permalink
    Definition Classes
    MatcherSyntax
  32. def isEqualToIgnoringCase(expected: String): Matcher[String]

    Permalink
    Definition Classes
    MatcherSyntax
  33. def isFailure[A]: Matcher[Try[A]]

    Permalink
    Definition Classes
    MatcherSyntax
  34. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  35. def isSuccess[A]: Matcher[Try[A]]

    Permalink
    Definition Classes
    MatcherSyntax
  36. def isTheSameInstanceAs[A](instance: A): Matcher[A]

    Permalink
    Definition Classes
    MatcherSyntax
  37. def matcher[A](expected: String)(predicate: (A) ⇒ Boolean): Matcher[A]

    Permalink
    Definition Classes
    MatcherSyntax
  38. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  39. def not[A](matcher: Matcher[A]): Matcher[A]

    Permalink
    Definition Classes
    MatcherSyntax
  40. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  41. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  42. def optionContains[A](element: A): Matcher[Option[A]]

    Permalink
    Definition Classes
    MatcherSyntax
  43. def pending(message: String): Assertion

    Permalink
    Definition Classes
    JavaTestSyntax
  44. def pending(): Assertion

    Permalink
    Definition Classes
    JavaTestSyntax
  45. def run(runners: Seq[TestRunner]): TestResults

    Permalink
    Definition Classes
    JavaTestSyntax
  46. def run(firstRunner: TestRunner, runners: TestRunner*): TestResults

    Permalink
    Definition Classes
    JavaTestSyntax
  47. implicit def runnerFromTestable(testable: Testable): TestRunner

    Permalink
    Definition Classes
    JavaTestSyntax
  48. implicit def runnerFromTestables(testables: Seq[Testable]): TestRunner

    Permalink
    Definition Classes
    JavaTestSyntax
  49. def startsWith(prefix: String): Matcher[String]

    Permalink
    Definition Classes
    MatcherSyntax
  50. def suite(name: String, tests: Seq[Testable]): TestSuite

    Permalink
    Definition Classes
    JavaTestSyntax
  51. def suite(name: String, firstTest: Testable, tests: Testable*): TestSuite

    Permalink
    Definition Classes
    JavaTestSyntax
  52. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  53. def test(name: String)(test: ⇒ Assertion): Test

    Permalink
    Definition Classes
    JavaTestSyntax
  54. def testableRunner(testables: Seq[Testable], observers: (TestResult) ⇒ Unit*): TestRunner

    Permalink
    Definition Classes
    JavaTestSyntax
  55. def that[A](messagePrefix: String, value: A, matcher: Matcher[A]): Assertion

    Permalink
    Definition Classes
    JavaTestSyntax
  56. def that[A](value: A, matcher: Matcher[A]): Assertion

    Permalink
    Definition Classes
    JavaTestSyntax
  57. def that(condition: Boolean, description: String): Assertion

    Permalink
    Definition Classes
    JavaTestSyntax
  58. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  59. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  60. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  61. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from MatcherSyntax

Inherited from FixtureSyntax

Inherited from EventuallySyntax

Inherited from BenchmarkSyntax

Inherited from JavaTestSyntax

Inherited from AnyRef

Inherited from Any

Ungrouped