Aubergine Console Runner - Core bvba - Tom Janssens 2009
    Parsing files
      Processing file(s) : Stories\*.txt
        Parsing file : C:\Projecten\Be.Corebvba.MVCExtensions\src\Tasks.Specs\bin\Release\Stories\TaskStories.txt
    DSLs:
      a group of tasks [Tasks.Specs.TaskContext]
        Void I add the following task(String[] name,String[] description,String[] status)
        Void the following tasks exist(String[] name,String[] description,String[] status)
        Boolean the tasklist should contain the following tasks(String[] name,String[] description,String[] status)
        Void I switch the status of (?.+)(Task task)
        Void I delete (?.+)(Task task)
        Task the task "(?.+)"(String name)
    Running Tests
    • Story manipulate tasks OK
      • Context a group of tasks OK
      • Given the following tasks exist OK
        • Data | name | description | status | OK
        • Data | Do the dishes | Be carefull | Todo | OK
        • Data | Update Aubergine project | procrastination FTW !! | Todo | OK
        • Data | Order stamps | 20 pieces | Done | OK
      • Scenario Add a new task OK
        • When I add the following task OK
          • Data | name | description | status | OK
          • Data | Feed the fishes | Be carefull | Todo | OK
        • Then the tasklist should contain the following tasks OK
          • Data | name | description | status | OK
          • Data | Do the dishes | Be carefull | Todo | OK
          • Data | Update Aubergine project | procrastination FTW !! | Todo | OK
          • Data | Order stamps | 20 pieces | Done | OK
          • Data | Feed the fishes | Be carefull | Todo | OK
      • Scenario Switch the task status from "Todo" OK
        • When I switch the status of the task "Do the dishes" OK
        • Then the tasklist should contain the following tasks OK
          • Data | name | description | status | OK
          • Data | Do the dishes | Be carefull | Done | OK
          • Data | Update Aubergine project | procrastination FTW !! | Todo | OK
          • Data | Order stamps | 20 pieces | Done | OK
      • Scenario Switch the task status from "Done" OK
        • When I switch the status of the task "Order stamps" OK
        • Then the tasklist should contain the following tasks OK
          • Data | name | description | status | OK
          • Data | Do the dishes | Be carefull | Todo | OK
          • Data | Update Aubergine project | procrastination FTW !! | Todo | OK
          • Data | Order stamps | 20 pieces | Todo | OK
      • Scenario Delete a task OK
        • When I delete the task "Update Aubergine project" OK
        • Then the tasklist should contain the following tasks OK
          • Data | name | description | status | OK
          • Data | Do the dishes | Be carefull | Todo | OK
          • Data | Order stamps | 20 pieces | Done | OK