Package

io.github.olib963

javatest_scala

Permalink

package javatest_scala

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

Type Members

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

    Permalink
  2. trait BenchmarkSyntax extends AnyRef

    Permalink
  3. trait DurationFormat extends (Duration) ⇒ String

    Permalink
  4. case class EventuallyConfig(attempts: Int, waitInterval: Duration, initialDelay: Option[Duration] = None) extends Product with Serializable

    Permalink
  5. trait EventuallySyntax extends AnyRef

    Permalink
  6. trait FixtureSyntax extends AnyRef

    Permalink
  7. trait JavaTestSyntax extends AnyRef

    Permalink
  8. trait MatcherSyntax extends AnyRef

    Permalink
  9. trait Runners extends TestRunners

    Permalink
  10. trait Suite extends TestSuiteClass

    Permalink

Value Members

  1. object CollectionConverters

    Permalink
  2. object DurationFormat

    Permalink
  3. object EventuallyConfig extends Serializable

    Permalink
  4. object FunctionConverters

    Permalink
  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 contains[A](element: A): Matcher[Seq[A]]

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

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

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

    Permalink
    Definition Classes
    MatcherSyntax
  14. def eventually(fn: ⇒ Assertion)(implicit config: EventuallyConfig): Assertion

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

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

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

    Permalink
    Definition Classes
    FixtureSyntax
  18. def hasLength(length: Int): Matcher[String]

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

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

    Permalink
    Definition Classes
    MatcherSyntax
  21. val isBlankString: Matcher[String]

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    MatcherSyntax
  29. def isSuccess[A]: Matcher[Try[A]]

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

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

    Permalink
    Definition Classes
    MatcherSyntax
  32. def not[A](matcher: Matcher[A]): Matcher[A]

    Permalink
    Definition Classes
    MatcherSyntax
  33. def optionContains[A](element: A): Matcher[Option[A]]

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    JavaTestSyntax
  43. def test(name: String)(test: ⇒ Assertion): Test

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

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

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

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

    Permalink
    Definition Classes
    JavaTestSyntax

Inherited from AllJavaTestSyntax

Inherited from MatcherSyntax

Inherited from FixtureSyntax

Inherited from EventuallySyntax

Inherited from BenchmarkSyntax

Inherited from JavaTestSyntax

Inherited from AnyRef

Inherited from Any

Ungrouped