Re: [COTDC] 80#3 - TestRunnerBrowser

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

Re: [COTDC] 80#3 - TestRunnerBrowser

laurent laffont
Today: TestRunnerBrowser

Laurent

On Tue, Sep 6, 2011 at 7:59 PM, laurent laffont <[hidden email]> wrote:

Today: RBSubclassOfClassToRename

Laurent


On Mon, Sep 5, 2011 at 9:55 PM, laurent laffont <[hidden email]> wrote:
    Today:  CategoryEnvironment


Comment Of The Day Contest - One Day One Comment
Rules: 
#1: Each day a not commented class is elected. Each day the best comment will be integrated with name of the author(s).
#2: If you cannot comment it, deprecate it.
Laurent
 


Reply | Threaded
Open this post in threaded view
|

Re: [Pharo-users] [COTDC] 80#3 - TestRunnerBrowser

Stéphane Ducasse

On Sep 7, 2011, at 9:45 PM, laurent laffont wrote:

> Today: TestRunnerBrowser


I'm a class to selectively run tests and get the results of their execution.

>
> Laurent
>
> On Tue, Sep 6, 2011 at 7:59 PM, laurent laffont <[hidden email]> wrote:
>
> Today: RBSubclassOfClassToRename
>
> Laurent
>
>
> On Mon, Sep 5, 2011 at 9:55 PM, laurent laffont <[hidden email]> wrote:
>     Today:  CategoryEnvironment
>
>
> Comment Of The Day Contest - One Day One Comment
> Rules:
> #1: Each day a not commented class is elected. Each day the best comment will be integrated with name of the author(s).
> #2: If you cannot comment it, deprecate it.
> Results: http://code.google.com/p/pharo/wiki/CommentOfTheDayContest
>
> Laurent
>  
>
>


Reply | Threaded
Open this post in threaded view
|

Re: [Pharo-users] [COTDC] 80#3 - TestRunnerBrowser

HwaJong Oh
I'm a class to selectively run tests and get the results of their execution.
Don't panic that I don't have any method nor variables. My superclass takes care of me doing ...

TestRunnerBrowser default open
Reply | Threaded
Open this post in threaded view
|

Re: [COTDC] 80#3 - TestRunnerBrowser

Sean P. DeNigris
Administrator
In reply to this post by laurent laffont
The following is cut-and-pasted and adapted from "Pharo By Example". Steph, any license issues here?

Although tests can be most easily be run from a browser, I provide the ability to:
* select sets of test suites to run. I am designed to make it easy to execute groups of tests
* obtain a more detailed log of the results


UI Description
___________

My left-most pane lists all of the categories that contain test classes (i.e., subclasses of TestCase); when some of these categories are selected, the test classes that they contain appear in the pane to the right. Abstract classes are italicized, and the test class hierarchy is shown by indentation, so subclasses of ClassTestCase are indented more than subclasses of TestCase.

The tests that did not pass (if any) are listed in the right-hand panes of the Test Runner; if you want to debug one, to see why it failed, just click on the name.
Cheers,
Sean