aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* docs for TestMoreJesse Luehrs2013-03-051-6/+280
|
* add a note method to TestMoreJesse Luehrs2013-03-051-0/+4
|
* this should be protectedJesse Luehrs2013-03-051-1/+1
|
* TestHarness docsJesse Luehrs2013-03-041-2/+43
|
* docs for TestBuilderJesse Luehrs2013-03-041-11/+58
|
* remove the ability to skip and bail out with no reasonJesse Luehrs2013-03-044-40/+3
|
* just call this method todoJesse Luehrs2013-03-043-8/+8
|
* parser docsJesse Luehrs2013-03-041-0/+24
|
* hide the implementation of the parserJesse Luehrs2013-03-041-87/+99
|
* document ExternalTestJesse Luehrs2013-03-041-1/+17
|
* more docsJesse Luehrs2013-03-012-19/+92
|
* some cleanupsJesse Luehrs2013-03-018-19/+11
|
* make this stop warningJesse Luehrs2013-03-011-1/+3
|
* docs for ConsumerJesse Luehrs2013-03-012-3/+78
|
* docs for plan-related stuffJesse Luehrs2013-03-011-0/+40
|
* more documentationJesse Luehrs2013-03-0113-6/+85
|
* move more things aroundJesse Luehrs2013-03-018-58/+65
|
* SkipAll shouldn't run tests at all, and should be a successJesse Luehrs2013-03-013-11/+29
|
* docsJesse Luehrs2013-03-011-1/+12
|
* formattingJesse Luehrs2013-02-281-1/+2
|
* this is no longer usedJesse Luehrs2013-02-281-3/+0
|
* have the sbt reporter check the exit code tooJesse Luehrs2013-02-282-6/+30
|
* get the exit code correct for when no tests are runJesse Luehrs2013-02-282-10/+4
|
* this extra conditional isn't necessaryJesse Luehrs2013-02-281-20/+18
|
* don't need these anymoreJesse Luehrs2013-02-282-3/+0
|
* clean up a bit moreJesse Luehrs2013-02-284-4/+4
|
* hide failure explanations from summary reportersJesse Luehrs2013-02-281-1/+7
|
* convert the sbt reporter to use streamingJesse Luehrs2013-02-281-26/+39
|
* use SummarizedTests in SBTReporterJesse Luehrs2013-02-281-10/+3
|
* factor some stuff out of SummaryReporterJesse Luehrs2013-02-282-43/+51
|
* nicer sbt test outputJesse Luehrs2013-02-281-2/+2
|
* more cleanupsJesse Luehrs2013-02-281-3/+3
|
* clean upsJesse Luehrs2013-02-284-19/+23
|
* eh, skip all with no message isn't worth it, reallyJesse Luehrs2013-02-283-40/+6
|
* more cleanupJesse Luehrs2013-02-281-16/+16
|
* refactor the harness application a bitJesse Luehrs2013-02-281-18/+50
|
* test for explicit plans with TestMoreJesse Luehrs2013-02-281-0/+29
|
* eliminate MessageJesse Luehrs2013-02-286-176/+223
|
* case class cleanupsJesse Luehrs2013-02-283-27/+12
|
* stop using Option[Plan]Jesse Luehrs2013-02-285-46/+50
|
* make some more things privateJesse Luehrs2013-02-283-27/+26
|
* try to name this a bit betterJesse Luehrs2013-02-278-20/+24
|
* couple more testsJesse Luehrs2013-02-272-2/+4
|
* add a leading newline to diags when running under a non-raw reporterJesse Luehrs2013-02-277-35/+72
| | | | | makes things easier to read this way, when diags are printed to stderr interspersed with test summary information
* use the new stream parsing stuff in the summary reporterJesse Luehrs2013-02-271-16/+66
|
* this name parameter was never usedJesse Luehrs2013-02-272-23/+8
|
* short summary goes after long summaryJesse Luehrs2013-02-271-1/+1
|
* use iterators instead of streamsJesse Luehrs2013-02-271-16/+16
| | | | | | | | | streams buffer the next character (to support Stream.Empty), which means that if there is exactly one line available, it will read that line and then block waiting for the next character before the result stream can be returned. this means that we don't get results from the current line until the next line is ready. iterators don't have that problem, since they don't have a separate Empty type, they just have a hasNext method.
* also generate start and end eventsJesse Luehrs2013-02-271-2/+9
|
* generate plan and result eventsJesse Luehrs2013-02-261-3/+9
| | | | ignore comments and subtests completely for now