From 0db3f4c6502d95e4487ad6c181302c81e3687355 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 18 Mar 2013 18:22:58 -0500 Subject: update docs --- com/iinteractive/test/ExternalTest.html | 2 +- com/iinteractive/test/Test.html | 2 +- com/iinteractive/test/TestMore.html | 87 ++++- com/iinteractive/test/harness/SummarizedTests.html | 6 +- com/iinteractive/test/harness/SummaryReporter.html | 6 +- com/iinteractive/test/sbt/SBTReporter.html | 10 +- com/iinteractive/test/tap/LineEvent.html | 398 +++++++++++++++++++++ com/iinteractive/test/tap/TAPEvent.html | 2 +- com/iinteractive/test/tap/TestBuilder.html | 12 +- com/iinteractive/test/tap/package.html | 13 + index.html | 2 +- index.js | 2 +- index/index-d.html | 3 + index/index-e.html | 3 + index/index-l.html | 8 +- index/index-t.html | 3 + 16 files changed, 529 insertions(+), 30 deletions(-) create mode 100644 com/iinteractive/test/tap/LineEvent.html diff --git a/com/iinteractive/test/ExternalTest.html b/com/iinteractive/test/ExternalTest.html index 1187ab9..c1197c2 100644 --- a/com/iinteractive/test/ExternalTest.html +++ b/com/iinteractive/test/ExternalTest.html @@ -363,7 +363,7 @@ Console.err, so you can swap these out as required in order to parse it. results are being summarized rather than directly displayed.

Runs the test just like run, but in a way that makes sense when test results are being summarized rather than directly displayed.

Summarizing test reporters tend to repeatedly update the same line on the terminal, so this method makes calls to - diag (which sends + diag (which sends messages to stderr, where they are typically displayed as-is) prefix the message with a newline, to ensure that the output starts on its own line. diff --git a/com/iinteractive/test/Test.html b/com/iinteractive/test/Test.html index 4a21978..56ff54d 100644 --- a/com/iinteractive/test/Test.html +++ b/com/iinteractive/test/Test.html @@ -362,7 +362,7 @@ Console.err, so you can swap these out as required in order to parse it. results are being summarized rather than directly displayed.

Runs the test just like run, but in a way that makes sense when test results are being summarized rather than directly displayed.

Summarizing test reporters tend to repeatedly update the same line on the terminal, so this method makes calls to - diag (which sends + diag (which sends messages to stderr, where they are typically displayed as-is) prefix the message with a newline, to ensure that the output starts on its own line. diff --git a/com/iinteractive/test/TestMore.html b/com/iinteractive/test/TestMore.html index 9d811bd..5d37abf 100644 --- a/com/iinteractive/test/TestMore.html +++ b/com/iinteractive/test/TestMore.html @@ -332,21 +332,38 @@ was called, not from the call to ok in the notok metho

Definition Classes
TestMore → DelayedInit
  • - - + +

    def - diag(message: String): Unit + diag(message: Any): Unit

    Output a comment to Console.err.

    Output a comment to Console.err. This is intended to be visible to users even when running the test under a summarizing harness.

    Example:
    1. diag("Testing with Scala " + util.Properties.versionString) +

    +
    +
  • + + +

    + + + def + + + dies_ok[T <: Throwable](body: ⇒ Unit)(implicit arg0: ClassTag[T]): Boolean + +

    +

    Assert that the given block of code throws an exception.

    Assert that the given block of code throws an exception. +

    Example: +
    1. dies_ok[MyException] { myObj.explode }

  • @@ -375,6 +392,26 @@ users even when running the test under a summarizing harness.
    Definition Classes
    AnyRef → Any
    +
  • + + +

    + + + def + + + exception(body: ⇒ Unit): Option[Throwable] + +

    +

    Runs a block of code, returning the exception that it throws, or None if +no exception was thrown.

    Runs a block of code, returning the exception that it throws, or None if +no exception was thrown. Not an assertion on its own, but can be used to +create more complicated assertions about exceptions. +

    Example: +
    1. is(exception { myObj.explode }, None) +

    +
  • @@ -607,6 +644,23 @@ assertion.

    Assert that a string matches a regular expression.

    Assert that a string matches a regular expression.

    Example:
    1. like(response.header("Content-Type"), """text/x?html""".r) +

    +
    +
  • + + +

    + + + def + + + lives_ok(body: ⇒ Unit): Boolean + +

    +

    Assert that the given block of code doesn't throw an exception.

    Assert that the given block of code doesn't throw an exception. +

    Example: +
    1. lives_ok { myObj.explode }

  • @@ -623,15 +677,15 @@ assertion.
    Definition Classes
    AnyRef
  • - - + +

    def - note(message: String): Unit + note(message: Any): Unit

    Output a comment to Console.out.

    Output a comment to Console.out. This is intended to only be visible @@ -770,7 +824,7 @@ Console.err, so you can swap these out as required in order to parse it. results are being summarized rather than directly displayed.

    Runs the test just like run, but in a way that makes sense when test results are being summarized rather than directly displayed.

    Summarizing test reporters tend to repeatedly update the same line on the terminal, so this method makes calls to - diag (which sends + diag (which sends messages to stderr, where they are typically displayed as-is) prefix the message with a newline, to ensure that the output starts on its own line. @@ -841,6 +895,25 @@ the single assertion that the overall test sees.

    Definition Classes
    AnyRef
    +
  • + + +

    + + + def + + + throws_ok(e: Throwable)(body: ⇒ Unit): Boolean + +

    +

    Assert that the given block of code throws an exception, and that the +exception that it throws is equal to the passed exception.

    Assert that the given block of code throws an exception, and that the +exception that it throws is equal to the passed exception. +

    Example: +
    1. throws_ok(new MyException("foo")) { myObj.explode } +

    +
  • diff --git a/com/iinteractive/test/harness/SummarizedTests.html b/com/iinteractive/test/harness/SummarizedTests.html index 58696e0..64c8446 100644 --- a/com/iinteractive/test/harness/SummarizedTests.html +++ b/com/iinteractive/test/harness/SummarizedTests.html @@ -312,15 +312,15 @@ which can be used to produce whatever summarized output you need.
    Definition Classes
    AnyRef
  • - - + +

    def - runOneTest(test: Test, cb: (TAPEvent) ⇒ Unit): TAPResult + runOneTest(test: Test, cb: (TAPEvent) ⇒ Unit, combine: Boolean = false): TAPResult

    Runs a single test instance, calling cb diff --git a/com/iinteractive/test/harness/SummaryReporter.html b/com/iinteractive/test/harness/SummaryReporter.html index 71aa8b3..cd38118 100644 --- a/com/iinteractive/test/harness/SummaryReporter.html +++ b/com/iinteractive/test/harness/SummaryReporter.html @@ -354,15 +354,15 @@ names testNames.

  • returns

    The exit code for the harness to use. Will be 0 on success.

    Definition Classes
    SummaryReporterMultiTestReporter
  • - - + +

    def - runOneTest(test: Test, cb: (TAPEvent) ⇒ Unit): TAPResult + runOneTest(test: Test, cb: (TAPEvent) ⇒ Unit, combine: Boolean = false): TAPResult

    Runs a single test instance, calling cb diff --git a/com/iinteractive/test/sbt/SBTReporter.html b/com/iinteractive/test/sbt/SBTReporter.html index 04e3db4..47f030d 100644 --- a/com/iinteractive/test/sbt/SBTReporter.html +++ b/com/iinteractive/test/sbt/SBTReporter.html @@ -85,7 +85,7 @@

    Instance Constructors

    1. - +

      @@ -93,7 +93,7 @@ new - SBTReporter(loader: ClassLoader, loggers: Array[Logger], eventHandler: EventHandler) + SBTReporter(loader: ClassLoader, loggers: Array[Logger], eventHandler: EventHandler, verbose: Boolean)

      @@ -338,15 +338,15 @@

    returns

    The exit code for the harness to use. Will be 0 on success.

    Definition Classes
    SBTReporterReporter
  • - - + +

    def - runOneTest(test: Test, cb: (TAPEvent) ⇒ Unit): TAPResult + runOneTest(test: Test, cb: (TAPEvent) ⇒ Unit, combine: Boolean = false): TAPResult

    Runs a single test instance, calling cb diff --git a/com/iinteractive/test/tap/LineEvent.html b/com/iinteractive/test/tap/LineEvent.html new file mode 100644 index 0000000..28c742e --- /dev/null +++ b/com/iinteractive/test/tap/LineEvent.html @@ -0,0 +1,398 @@ + + + + + LineEvent - com.iinteractive.test.tap.LineEvent + + + + + + + + + + + + + + + +

    + +

    com.iinteractive.test.tap

    +

    LineEvent

    +
    + +

    + + + case class + + + LineEvent extends TAPEvent with Product with Serializable + +

    + +

    A line was parsed.

    + Linear Supertypes +
    Serializable, Serializable, Product, Equals, TAPEvent, AnyRef, Any
    +
    + + +
    +
    +
    + Ordering +
      + +
    1. Alphabetic
    2. +
    3. By inheritance
    4. +
    +
    +
    + Inherited
    +
    +
      +
    1. LineEvent
    2. Serializable
    3. Serializable
    4. Product
    5. Equals
    6. TAPEvent
    7. AnyRef
    8. Any
    9. +
    +
    + +
      +
    1. Hide All
    2. +
    3. Show all
    4. +
    + Learn more about member selection +
    +
    + Visibility +
    1. Public
    2. All
    +
    +
    + +
    +
    + + + + + + +
    +

    Value Members

    +
    1. + + +

      + + final + def + + + !=(arg0: AnyRef): Boolean + +

      +
      Definition Classes
      AnyRef
      +
    2. + + +

      + + final + def + + + !=(arg0: Any): Boolean + +

      +
      Definition Classes
      Any
      +
    3. + + +

      + + final + def + + + ##(): Int + +

      +
      Definition Classes
      AnyRef → Any
      +
    4. + + +

      + + final + def + + + ==(arg0: AnyRef): Boolean + +

      +
      Definition Classes
      AnyRef
      +
    5. + + +

      + + final + def + + + ==(arg0: Any): Boolean + +

      +
      Definition Classes
      Any
      +
    6. + + +

      + + final + def + + + asInstanceOf[T0]: T0 + +

      +
      Definition Classes
      Any
      +
    7. + + +

      + + + def + + + clone(): AnyRef + +

      +
      Attributes
      protected[java.lang]
      Definition Classes
      AnyRef
      Annotations
      + @throws() + +
      +
    8. + + +

      + + final + def + + + eq(arg0: AnyRef): Boolean + +

      +
      Definition Classes
      AnyRef
      +
    9. + + +

      + + + def + + + finalize(): Unit + +

      +
      Attributes
      protected[java.lang]
      Definition Classes
      AnyRef
      Annotations
      + @throws() + +
      +
    10. + + +

      + + final + def + + + getClass(): Class[_] + +

      +
      Definition Classes
      AnyRef → Any
      +
    11. + + +

      + + final + def + + + isInstanceOf[T0]: Boolean + +

      +
      Definition Classes
      Any
      +
    12. + + +

      + + + val + + + line: Line + +

      +

      The Line that was + parsed.

      +
    13. + + +

      + + final + def + + + ne(arg0: AnyRef): Boolean + +

      +
      Definition Classes
      AnyRef
      +
    14. + + +

      + + final + def + + + notify(): Unit + +

      +
      Definition Classes
      AnyRef
      +
    15. + + +

      + + final + def + + + notifyAll(): Unit + +

      +
      Definition Classes
      AnyRef
      +
    16. + + +

      + + final + def + + + synchronized[T0](arg0: ⇒ T0): T0 + +

      +
      Definition Classes
      AnyRef
      +
    17. + + +

      + + final + def + + + wait(): Unit + +

      +
      Definition Classes
      AnyRef
      Annotations
      + @throws() + +
      +
    18. + + +

      + + final + def + + + wait(arg0: Long, arg1: Int): Unit + +

      +
      Definition Classes
      AnyRef
      Annotations
      + @throws() + +
      +
    19. + + +

      + + final + def + + + wait(arg0: Long): Unit + +

      +
      Definition Classes
      AnyRef
      Annotations
      + @throws() + +
      +
    +
    + + + + +
    + +
    +
    +

    Inherited from Serializable

    +
    +

    Inherited from Serializable

    +
    +

    Inherited from Product

    +
    +

    Inherited from Equals

    +
    +

    Inherited from TAPEvent

    +
    +

    Inherited from AnyRef

    +
    +

    Inherited from Any

    +
    + +
    + +
    +
    +

    Ungrouped

    + +
    +
    + +
    + +
    + + + + + + \ No newline at end of file diff --git a/com/iinteractive/test/tap/TAPEvent.html b/com/iinteractive/test/tap/TAPEvent.html index f8b2e16..22b7b76 100644 --- a/com/iinteractive/test/tap/TAPEvent.html +++ b/com/iinteractive/test/tap/TAPEvent.html @@ -49,7 +49,7 @@
    AnyRef, Any
  • Known Subclasses - +
    diff --git a/com/iinteractive/test/tap/TestBuilder.html b/com/iinteractive/test/tap/TestBuilder.html index cde10da..95a4646 100644 --- a/com/iinteractive/test/tap/TestBuilder.html +++ b/com/iinteractive/test/tap/TestBuilder.html @@ -246,15 +246,15 @@ called on it, and the result of the subtest will still need to be reported as a separate test result through ok.

  • - - + +

    def - diag(message: String): Unit + diag(message: Any): Unit

    Writes a comment line to Console.err.

    Writes a comment line to Console.err. This will allow it to be @@ -390,15 +390,15 @@ tests.

    Definition Classes
    AnyRef
  • - - + +

    def - note(message: String): Unit + note(message: Any): Unit

    Write a comment line to Console.out.

    Write a comment line to Console.out. This will typically only be diff --git a/com/iinteractive/test/tap/package.html b/com/iinteractive/test/tap/package.html index a0a10d0..f02f03a 100644 --- a/com/iinteractive/test/tap/package.html +++ b/com/iinteractive/test/tap/package.html @@ -125,6 +125,19 @@

    The end of a TAP stream.

    +
  • + + +

    + + + case class + + + LineEvent extends TAPEvent with Product with Serializable + +

    +

    A line was parsed.

  • diff --git a/index.html b/index.html index c588da2..e7f1ded 100644 --- a/index.html +++ b/index.html @@ -47,7 +47,7 @@
  • com.iinteractive.test.tap -
    1. (case class)CommentEvent
    2. (object)
      Consumer
    3. (trait)Directive
    4. (case class)EndEvent
    5. (case class)ParseException
    6. (class)Parser
    7. (case class)PlanEvent
    8. (object)
      Producer
    9. (case class)ResultEvent
    10. (case class)SkipDirective
    11. (object)
      StartEvent
    12. (case class)SubtestEndEvent
    13. (object)
      SubtestStartEvent
    14. (trait)TAPEvent
    15. (class)TAPResult
    16. (class)TestBuilder
    17. (class)TestResult
    18. (case class)TodoDirective
    +
    1. (case class)CommentEvent
    2. (object)
      Consumer
    3. (trait)Directive
    4. (case class)EndEvent
    5. (case class)LineEvent
    6. (case class)ParseException
    7. (class)Parser
    8. (case class)PlanEvent
    9. (object)
      Producer
    10. (case class)ResultEvent
    11. (case class)SkipDirective
    12. (object)
      StartEvent
    13. (case class)SubtestEndEvent
    14. (object)
      SubtestStartEvent
    15. (trait)TAPEvent
    16. (class)TAPResult
    17. (class)TestBuilder
    18. (class)TestResult
    19. (case class)TodoDirective
  • diff --git a/index.js b/index.js index a9d119d..b3771c2 100644 --- a/index.js +++ b/index.js @@ -1 +1 @@ -Index.PACKAGES = {"com.iinteractive.test.harness" : [{"trait" : "com\/iinteractive\/test\/harness\/MultiTestReporter.html", "name" : "com.iinteractive.test.harness.MultiTestReporter"}, {"trait" : "com\/iinteractive\/test\/harness\/Reporter.html", "name" : "com.iinteractive.test.harness.Reporter"}, {"trait" : "com\/iinteractive\/test\/harness\/SummarizedTests.html", "name" : "com.iinteractive.test.harness.SummarizedTests"}, {"class" : "com\/iinteractive\/test\/harness\/SummaryReporter.html", "name" : "com.iinteractive.test.harness.SummaryReporter"}, {"class" : "com\/iinteractive\/test\/harness\/TAPReporter.html", "name" : "com.iinteractive.test.harness.TAPReporter"}, {"object" : "com\/iinteractive\/test\/harness\/TestHarness$.html", "name" : "com.iinteractive.test.harness.TestHarness"}], "com.iinteractive" : [], "com.iinteractive.test" : [{"case class" : "com\/iinteractive\/test\/package$$BailOutException.html", "name" : "com.iinteractive.test.BailOutException"}, {"class" : "com\/iinteractive\/test\/ExternalTest.html", "name" : "com.iinteractive.test.ExternalTest"}, {"object" : "com\/iinteractive\/test\/package$$NoPlan$.html", "name" : "com.iinteractive.test.NoPlan"}, {"case class" : "com\/iinteractive\/test\/package$$NumericPlan.html", "name" : "com.iinteractive.test.NumericPlan"}, {"trait" : "com\/iinteractive\/test\/package$$Plan.html", "name" : "com.iinteractive.test.Plan"}, {"case class" : "com\/iinteractive\/test\/package$$SkipAll.html", "name" : "com.iinteractive.test.SkipAll"}, {"trait" : "com\/iinteractive\/test\/Test.html", "name" : "com.iinteractive.test.Test"}, {"class" : "com\/iinteractive\/test\/TestMore.html", "name" : "com.iinteractive.test.TestMore"}], "com.iinteractive.test.tap" : [{"case class" : "com\/iinteractive\/test\/tap\/CommentEvent.html", "name" : "com.iinteractive.test.tap.CommentEvent"}, {"object" : "com\/iinteractive\/test\/tap\/Consumer$.html", "name" : "com.iinteractive.test.tap.Consumer"}, {"trait" : "com\/iinteractive\/test\/tap\/Directive.html", "name" : "com.iinteractive.test.tap.Directive"}, {"case class" : "com\/iinteractive\/test\/tap\/EndEvent.html", "name" : "com.iinteractive.test.tap.EndEvent"}, {"case class" : "com\/iinteractive\/test\/tap\/package$$ParseException.html", "name" : "com.iinteractive.test.tap.ParseException"}, {"class" : "com\/iinteractive\/test\/tap\/Parser.html", "name" : "com.iinteractive.test.tap.Parser"}, {"case class" : "com\/iinteractive\/test\/tap\/PlanEvent.html", "name" : "com.iinteractive.test.tap.PlanEvent"}, {"object" : "com\/iinteractive\/test\/tap\/Producer$.html", "name" : "com.iinteractive.test.tap.Producer"}, {"case class" : "com\/iinteractive\/test\/tap\/ResultEvent.html", "name" : "com.iinteractive.test.tap.ResultEvent"}, {"case class" : "com\/iinteractive\/test\/tap\/SkipDirective.html", "name" : "com.iinteractive.test.tap.SkipDirective"}, {"object" : "com\/iinteractive\/test\/tap\/StartEvent$.html", "name" : "com.iinteractive.test.tap.StartEvent"}, {"case class" : "com\/iinteractive\/test\/tap\/SubtestEndEvent.html", "name" : "com.iinteractive.test.tap.SubtestEndEvent"}, {"object" : "com\/iinteractive\/test\/tap\/SubtestStartEvent$.html", "name" : "com.iinteractive.test.tap.SubtestStartEvent"}, {"trait" : "com\/iinteractive\/test\/tap\/TAPEvent.html", "name" : "com.iinteractive.test.tap.TAPEvent"}, {"class" : "com\/iinteractive\/test\/tap\/TAPResult.html", "name" : "com.iinteractive.test.tap.TAPResult"}, {"class" : "com\/iinteractive\/test\/tap\/TestBuilder.html", "name" : "com.iinteractive.test.tap.TestBuilder"}, {"class" : "com\/iinteractive\/test\/tap\/TestResult.html", "name" : "com.iinteractive.test.tap.TestResult"}, {"case class" : "com\/iinteractive\/test\/tap\/TodoDirective.html", "name" : "com.iinteractive.test.tap.TodoDirective"}], "com.iinteractive.test.sbt" : [{"object" : "com\/iinteractive\/test\/sbt\/Fingerprint$.html", "name" : "com.iinteractive.test.sbt.Fingerprint"}, {"class" : "com\/iinteractive\/test\/sbt\/Framework.html", "name" : "com.iinteractive.test.sbt.Framework"}, {"class" : "com\/iinteractive\/test\/sbt\/Runner.html", "name" : "com.iinteractive.test.sbt.Runner"}, {"class" : "com\/iinteractive\/test\/sbt\/SBTReporter.html", "name" : "com.iinteractive.test.sbt.SBTReporter"}], "com" : []}; \ No newline at end of file +Index.PACKAGES = {"com.iinteractive.test.harness" : [{"trait" : "com\/iinteractive\/test\/harness\/MultiTestReporter.html", "name" : "com.iinteractive.test.harness.MultiTestReporter"}, {"trait" : "com\/iinteractive\/test\/harness\/Reporter.html", "name" : "com.iinteractive.test.harness.Reporter"}, {"trait" : "com\/iinteractive\/test\/harness\/SummarizedTests.html", "name" : "com.iinteractive.test.harness.SummarizedTests"}, {"class" : "com\/iinteractive\/test\/harness\/SummaryReporter.html", "name" : "com.iinteractive.test.harness.SummaryReporter"}, {"class" : "com\/iinteractive\/test\/harness\/TAPReporter.html", "name" : "com.iinteractive.test.harness.TAPReporter"}, {"object" : "com\/iinteractive\/test\/harness\/TestHarness$.html", "name" : "com.iinteractive.test.harness.TestHarness"}], "com.iinteractive" : [], "com.iinteractive.test" : [{"case class" : "com\/iinteractive\/test\/package$$BailOutException.html", "name" : "com.iinteractive.test.BailOutException"}, {"class" : "com\/iinteractive\/test\/ExternalTest.html", "name" : "com.iinteractive.test.ExternalTest"}, {"object" : "com\/iinteractive\/test\/package$$NoPlan$.html", "name" : "com.iinteractive.test.NoPlan"}, {"case class" : "com\/iinteractive\/test\/package$$NumericPlan.html", "name" : "com.iinteractive.test.NumericPlan"}, {"trait" : "com\/iinteractive\/test\/package$$Plan.html", "name" : "com.iinteractive.test.Plan"}, {"case class" : "com\/iinteractive\/test\/package$$SkipAll.html", "name" : "com.iinteractive.test.SkipAll"}, {"trait" : "com\/iinteractive\/test\/Test.html", "name" : "com.iinteractive.test.Test"}, {"class" : "com\/iinteractive\/test\/TestMore.html", "name" : "com.iinteractive.test.TestMore"}], "com.iinteractive.test.tap" : [{"case class" : "com\/iinteractive\/test\/tap\/CommentEvent.html", "name" : "com.iinteractive.test.tap.CommentEvent"}, {"object" : "com\/iinteractive\/test\/tap\/Consumer$.html", "name" : "com.iinteractive.test.tap.Consumer"}, {"trait" : "com\/iinteractive\/test\/tap\/Directive.html", "name" : "com.iinteractive.test.tap.Directive"}, {"case class" : "com\/iinteractive\/test\/tap\/EndEvent.html", "name" : "com.iinteractive.test.tap.EndEvent"}, {"case class" : "com\/iinteractive\/test\/tap\/LineEvent.html", "name" : "com.iinteractive.test.tap.LineEvent"}, {"case class" : "com\/iinteractive\/test\/tap\/package$$ParseException.html", "name" : "com.iinteractive.test.tap.ParseException"}, {"class" : "com\/iinteractive\/test\/tap\/Parser.html", "name" : "com.iinteractive.test.tap.Parser"}, {"case class" : "com\/iinteractive\/test\/tap\/PlanEvent.html", "name" : "com.iinteractive.test.tap.PlanEvent"}, {"object" : "com\/iinteractive\/test\/tap\/Producer$.html", "name" : "com.iinteractive.test.tap.Producer"}, {"case class" : "com\/iinteractive\/test\/tap\/ResultEvent.html", "name" : "com.iinteractive.test.tap.ResultEvent"}, {"case class" : "com\/iinteractive\/test\/tap\/SkipDirective.html", "name" : "com.iinteractive.test.tap.SkipDirective"}, {"object" : "com\/iinteractive\/test\/tap\/StartEvent$.html", "name" : "com.iinteractive.test.tap.StartEvent"}, {"case class" : "com\/iinteractive\/test\/tap\/SubtestEndEvent.html", "name" : "com.iinteractive.test.tap.SubtestEndEvent"}, {"object" : "com\/iinteractive\/test\/tap\/SubtestStartEvent$.html", "name" : "com.iinteractive.test.tap.SubtestStartEvent"}, {"trait" : "com\/iinteractive\/test\/tap\/TAPEvent.html", "name" : "com.iinteractive.test.tap.TAPEvent"}, {"class" : "com\/iinteractive\/test\/tap\/TAPResult.html", "name" : "com.iinteractive.test.tap.TAPResult"}, {"class" : "com\/iinteractive\/test\/tap\/TestBuilder.html", "name" : "com.iinteractive.test.tap.TestBuilder"}, {"class" : "com\/iinteractive\/test\/tap\/TestResult.html", "name" : "com.iinteractive.test.tap.TestResult"}, {"case class" : "com\/iinteractive\/test\/tap\/TodoDirective.html", "name" : "com.iinteractive.test.tap.TodoDirective"}], "com.iinteractive.test.sbt" : [{"object" : "com\/iinteractive\/test\/sbt\/Fingerprint$.html", "name" : "com.iinteractive.test.sbt.Fingerprint"}, {"class" : "com\/iinteractive\/test\/sbt\/Framework.html", "name" : "com.iinteractive.test.sbt.Framework"}, {"class" : "com\/iinteractive\/test\/sbt\/Runner.html", "name" : "com.iinteractive.test.sbt.Runner"}, {"class" : "com\/iinteractive\/test\/sbt\/SBTReporter.html", "name" : "com.iinteractive.test.sbt.SBTReporter"}], "com" : []}; \ No newline at end of file diff --git a/index/index-d.html b/index/index-d.html index 3c42810..14ef655 100644 --- a/index/index-d.html +++ b/index/index-d.html @@ -20,6 +20,9 @@
    diag
    +
    +
    dies_ok
    +
    directive
    diff --git a/index/index-e.html b/index/index-e.html index 0bc8f80..6cbd00f 100644 --- a/index/index-e.html +++ b/index/index-e.html @@ -14,6 +14,9 @@
    EndEvent
    +
    +
    exception
    +
    exitCode
    diff --git a/index/index-l.html b/index/index-l.html index 6cb110f..47859c4 100644 --- a/index/index-l.html +++ b/index/index-l.html @@ -16,7 +16,13 @@
    Line
    - + +
    +
    LineEvent
    + +
    +
    lives_ok
    +
    loadClass
    diff --git a/index/index-t.html b/index/index-t.html index ee2178c..19ba873 100644 --- a/index/index-t.html +++ b/index/index-t.html @@ -50,6 +50,9 @@
    text
    +
    +
    throws_ok
    +
    todo
    -- cgit v1.2.3-54-g00ecf