From b709c89102712d283d137da3e8e376b25d9c949b Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:43:10 +0300 Subject: [PATCH 01/19] besouro automatic message --- .besouro/2015100811460663/actions.txt | 12 ++++++++++++ .besouro/2015100811460663/besouroEpisodes.txt | 0 .besouro/2015100811460663/disagreements.txt | 0 .../2015100811460663/randomHeuristicEpisodes.txt | 0 .besouro/2015100811460663/userComments.txt | 0 .besouro/2015100811460663/zorroEpisodes.txt | 0 .../tol/sqatlab/gameoflife/test/TestCell.java | 6 ++++-- 7 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 .besouro/2015100811460663/actions.txt create mode 100644 .besouro/2015100811460663/besouroEpisodes.txt create mode 100644 .besouro/2015100811460663/disagreements.txt create mode 100644 .besouro/2015100811460663/randomHeuristicEpisodes.txt create mode 100644 .besouro/2015100811460663/userComments.txt create mode 100644 .besouro/2015100811460663/zorroEpisodes.txt diff --git a/.besouro/2015100811460663/actions.txt b/.besouro/2015100811460663/actions.txt new file mode 100644 index 0000000..b0cadba --- /dev/null +++ b/.besouro/2015100811460663/actions.txt @@ -0,0 +1,12 @@ +FileOpenedAction 1444293966864 GameOfLife.java 74 0 0 0 +UnitTestCaseAction 1444293975496 TestGrid.java FAIL +UnitTestSessionAction 1444293975506 TestGrid FAIL +FileOpenedAction 1444295659586 Cell.java 68 0 0 0 +FileOpenedAction 1444295661104 Grid.java 68 0 0 0 +FileOpenedAction 1444295662831 TestCell.java 200 1 1 0 +FileOpenedAction 1444295664010 TestGrid.java 199 1 1 0 +RefactoringAction 1444296002419 TestCell.java RENAME test()=>void testLiveCell() METHOD +RefactoringAction 1444296005490 TestCell.java RENAME testLiveCell()=>void testLiveCellWith() METHOD +RefactoringAction 1444296009583 TestCell.java RENAME testLiveCellWith()=>void testLiveCellWithNoNeig() METHOD +RefactoringAction 1444296012707 TestCell.java RENAME testLiveCellWithNoNeig()=>void testLiveCellWithNoNeighborDies() METHOD +EditAction 1444297390153 TestCell.java 288 1 0 0 diff --git a/.besouro/2015100811460663/besouroEpisodes.txt b/.besouro/2015100811460663/besouroEpisodes.txt new file mode 100644 index 0000000..e69de29 diff --git a/.besouro/2015100811460663/disagreements.txt b/.besouro/2015100811460663/disagreements.txt new file mode 100644 index 0000000..e69de29 diff --git a/.besouro/2015100811460663/randomHeuristicEpisodes.txt b/.besouro/2015100811460663/randomHeuristicEpisodes.txt new file mode 100644 index 0000000..e69de29 diff --git a/.besouro/2015100811460663/userComments.txt b/.besouro/2015100811460663/userComments.txt new file mode 100644 index 0000000..e69de29 diff --git a/.besouro/2015100811460663/zorroEpisodes.txt b/.besouro/2015100811460663/zorroEpisodes.txt new file mode 100644 index 0000000..e69de29 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java index d8de09e..62f5e60 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java @@ -7,8 +7,10 @@ public class TestCell { @Test - public void test() { - fail("Not yet implemented"); + public void testLiveCellWithNoNeighborDies() { + Cell cell = new Cell("Alive"); + cell.update(0); + assertEquals.("Dead", cell.getState()); } } From 96c3c68f64f09aa44c705e89c815cc87bcfa0ffc Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:43:10 +0300 Subject: [PATCH 02/19] besouro automatic message --- .besouro/2015100811460663/actions.txt | 1 + src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.besouro/2015100811460663/actions.txt b/.besouro/2015100811460663/actions.txt index b0cadba..bfd544f 100644 --- a/.besouro/2015100811460663/actions.txt +++ b/.besouro/2015100811460663/actions.txt @@ -10,3 +10,4 @@ RefactoringAction 1444296005490 TestCell.java RENAME testLiveCell()=>void testLi RefactoringAction 1444296009583 TestCell.java RENAME testLiveCellWith()=>void testLiveCellWithNoNeig() METHOD RefactoringAction 1444296012707 TestCell.java RENAME testLiveCellWithNoNeig()=>void testLiveCellWithNoNeighborDies() METHOD EditAction 1444297390153 TestCell.java 288 1 0 0 +EditAction 1444297390536 TestGrid.java 201 1 0 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java index 9614d55..32c4fb3 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java @@ -7,7 +7,7 @@ public class TestGrid { @Test public void test() { - fail("Not yet implemented"); + //fail("Not yet implemented"); } } From 040eaef692a4153928ad5b0b2c5e2dbfec7e4598 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:14:49 +0300 Subject: [PATCH 03/19] besouro automatic message --- .besouro/2015100811460663/actions.txt | 17 +++++++++++++++ .besouro/2015100811460663/besouroEpisodes.txt | 21 +++++++++++++++++++ .../randomHeuristicEpisodes.txt | 1 + .besouro/2015100811460663/zorroEpisodes.txt | 1 + .../tol/sqatlab/gameoflife/test/TestCell.java | 14 +++++++++++-- 5 files changed, 52 insertions(+), 2 deletions(-) diff --git a/.besouro/2015100811460663/actions.txt b/.besouro/2015100811460663/actions.txt index bfd544f..bd64568 100644 --- a/.besouro/2015100811460663/actions.txt +++ b/.besouro/2015100811460663/actions.txt @@ -11,3 +11,20 @@ RefactoringAction 1444296009583 TestCell.java RENAME testLiveCellWith()=>void te RefactoringAction 1444296012707 TestCell.java RENAME testLiveCellWithNoNeig()=>void testLiveCellWithNoNeighborDies() METHOD EditAction 1444297390153 TestCell.java 288 1 0 0 EditAction 1444297390536 TestGrid.java 201 1 0 0 +CompilationAction 1444297391088 TestCell.java +CompilationAction 1444297391088 TestCell.java +CompilationAction 1444297391089 TestCell.java +CompilationAction 1444297391090 TestCell.java +CompilationAction 1444297416421 TestCell.java +CompilationAction 1444297416424 TestCell.java +CompilationAction 1444297416629 TestCell.java +CompilationAction 1444298440123 TestCell.java +UnitTestCaseAction 1444298443607 TestCell.java OK +UnitTestSessionAction 1444298443616 TestCell OK +RefactoringAction 1444299029333 Cell.java ADD int isAlive FIELD +RefactoringAction 1444299187221 Cell.java REMOVE isAlive FIELD +RefactoringAction 1444299197311 Cell.java ADD String name FIELD +RefactoringAction 1444299252271 Cell.java RENAME name=>String state FIELD +RefactoringAction 1444299272334 Cell.java ADD String getName() METHOD +RefactoringAction 1444299277395 Cell.java RENAME getName()=>String getState() METHOD +EditAction 1444299289128 TestCell.java 470 1 5 1 diff --git a/.besouro/2015100811460663/besouroEpisodes.txt b/.besouro/2015100811460663/besouroEpisodes.txt index e69de29..9247a3a 100644 --- a/.besouro/2015100811460663/besouroEpisodes.txt +++ b/.besouro/2015100811460663/besouroEpisodes.txt @@ -0,0 +1,21 @@ +1444298443616 refactoring 3 4476 true +1444298443617 refactoring 3 4476 true +1444298443618 refactoring 3 4476 true +1444298443619 refactoring 3 4476 true +1444298443620 refactoring 1A 4476 true +1444298443621 refactoring 3 4476 true +1444298443622 refactoring 3 4476 true +1444298443623 refactoring 3 4476 true +1444298443624 refactoring 3 4476 true +1444298443625 refactoring 3 4476 true +1444298443626 refactoring 3 4476 true +1444298443627 refactoring 3 4476 true +1444298443628 refactoring 3 4476 true +1444298443629 refactoring 3 4476 true +1444298443630 refactoring 3 4476 true +1444298443631 refactoring 3 4476 true +1444298443632 refactoring 3 4476 true +1444298443633 refactoring 3 4476 true +1444298443634 refactoring 3 4476 true +1444298443635 refactoring 3 4476 true +1444298443636 refactoring 3 4476 true diff --git a/.besouro/2015100811460663/randomHeuristicEpisodes.txt b/.besouro/2015100811460663/randomHeuristicEpisodes.txt index e69de29..da89aeb 100644 --- a/.besouro/2015100811460663/randomHeuristicEpisodes.txt +++ b/.besouro/2015100811460663/randomHeuristicEpisodes.txt @@ -0,0 +1 @@ +1444298443616 refactoring 3 4476 true diff --git a/.besouro/2015100811460663/zorroEpisodes.txt b/.besouro/2015100811460663/zorroEpisodes.txt index e69de29..4c1eb76 100644 --- a/.besouro/2015100811460663/zorroEpisodes.txt +++ b/.besouro/2015100811460663/zorroEpisodes.txt @@ -0,0 +1 @@ +1444298443616 refactoring 3 4476 false diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java index 62f5e60..d14f887 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java @@ -8,9 +8,19 @@ public class TestCell { @Test public void testLiveCellWithNoNeighborDies() { + //Cell cell = new Cell("Alive"); + //cell.update(0); + //assertEquals("Dead", cell.getState()); + Cell cell = new Cell("Alive"); - cell.update(0); - assertEquals.("Dead", cell.getState()); + String state = ""; + Boolean hasNeighbors = false; + + if(hasNeighbors = false){ + state = "Dead"; + } + + assertEquals("Dead", state); } } From a53dd16260b97eb81b6e4bb29c2f451c894a98b8 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:14:52 +0300 Subject: [PATCH 04/19] besouro automatic message --- .besouro/2015100811460663/actions.txt | 1 + src/org/unioulu/tol/sqatlab/gameoflife/Cell.java | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.besouro/2015100811460663/actions.txt b/.besouro/2015100811460663/actions.txt index bd64568..fad6cbe 100644 --- a/.besouro/2015100811460663/actions.txt +++ b/.besouro/2015100811460663/actions.txt @@ -28,3 +28,4 @@ RefactoringAction 1444299252271 Cell.java RENAME name=>String state FIELD RefactoringAction 1444299272334 Cell.java ADD String getName() METHOD RefactoringAction 1444299277395 Cell.java RENAME getName()=>String getState() METHOD EditAction 1444299289128 TestCell.java 470 1 5 1 +EditAction 1444299291980 Cell.java 136 1 1 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java index b66e9c8..7dc78cb 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java @@ -1,5 +1,9 @@ package org.unioulu.tol.sqatlab.gameoflife; public class Cell { - + String state = "Alive"; } + +public String getState() { + return state; +} \ No newline at end of file From 6fbd97a4da2a5dac5168485092576f6635a3e3a5 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:16:15 +0300 Subject: [PATCH 05/19] besouro automatic message --- .besouro/2015100811460663/actions.txt | 6 ++++++ .../unioulu/tol/sqatlab/gameoflife/test/TestCell.java | 11 ++++++----- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/.besouro/2015100811460663/actions.txt b/.besouro/2015100811460663/actions.txt index fad6cbe..9f930ee 100644 --- a/.besouro/2015100811460663/actions.txt +++ b/.besouro/2015100811460663/actions.txt @@ -29,3 +29,9 @@ RefactoringAction 1444299272334 Cell.java ADD String getName() METHOD RefactoringAction 1444299277395 Cell.java RENAME getName()=>String getState() METHOD EditAction 1444299289128 TestCell.java 470 1 5 1 EditAction 1444299291980 Cell.java 136 1 1 0 +CompilationAction 1444299292188 TestCell.java +CompilationAction 1444299292382 Cell.java +CompilationAction 1444299292383 Cell.java +CompilationAction 1444299292384 TestCell.java +CompilationAction 1444299331799 TestCell.java +EditAction 1444299375338 TestCell.java 471 1 3 1 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java index d14f887..9244bd2 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java @@ -8,11 +8,11 @@ public class TestCell { @Test public void testLiveCellWithNoNeighborDies() { - //Cell cell = new Cell("Alive"); - //cell.update(0); - //assertEquals("Dead", cell.getState()); - Cell cell = new Cell("Alive"); + cell.update(0); + assertEquals("Dead", cell.getState()); + + /*Cell cell = new Cell("Alive"); String state = ""; Boolean hasNeighbors = false; @@ -20,7 +20,8 @@ public void testLiveCellWithNoNeighborDies() { state = "Dead"; } - assertEquals("Dead", state); + assertEquals("Dead", state);*/ + } } From b26d8a0327142ff332998c64f58d67e06ec238a2 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:18:37 +0300 Subject: [PATCH 06/19] besouro automatic message --- .besouro/2015100811460663/actions.txt | 10 ++++++++++ src/org/unioulu/tol/sqatlab/gameoflife/Cell.java | 9 +++++---- .../unioulu/tol/sqatlab/gameoflife/test/TestCell.java | 2 +- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/.besouro/2015100811460663/actions.txt b/.besouro/2015100811460663/actions.txt index 9f930ee..b5e8fc5 100644 --- a/.besouro/2015100811460663/actions.txt +++ b/.besouro/2015100811460663/actions.txt @@ -35,3 +35,13 @@ CompilationAction 1444299292383 Cell.java CompilationAction 1444299292384 TestCell.java CompilationAction 1444299331799 TestCell.java EditAction 1444299375338 TestCell.java 471 1 3 1 +CompilationAction 1444299375633 TestCell.java +RefactoringAction 1444299405396 Cell.java REMOVE getState() METHOD +RefactoringAction 1444299407423 Cell.java ADD String getState() METHOD +CompilationAction 1444299423869 Cell.java +CompilationAction 1444299423870 Cell.java +CompilationAction 1444299424094 TestCell.java +RefactoringAction 1444299487704 Cell.java ADD void Stock(String, int) METHOD +RefactoringAction 1444299493227 Cell.java RENAME Stock(String, int)=>Cell(String, int) METHOD +RefactoringAction 1444299501868 Cell.java RENAME Cell(String, int)=>Cell(String) METHOD +EditAction 1444299517005 TestCell.java 473 1 2 1 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java index 7dc78cb..e8de7b1 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java @@ -1,9 +1,10 @@ package org.unioulu.tol.sqatlab.gameoflife; public class Cell { - String state = "Alive"; + private String state = "Alive"; + + public String getState() { + return state; + } } -public String getState() { - return state; -} \ No newline at end of file diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java index 9244bd2..b2624f2 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java @@ -9,7 +9,7 @@ public class TestCell { @Test public void testLiveCellWithNoNeighborDies() { Cell cell = new Cell("Alive"); - cell.update(0); + //cell.update(0); assertEquals("Dead", cell.getState()); /*Cell cell = new Cell("Alive"); From e1eed589dcab49aa0decbf653d07a285167dd20d Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:18:37 +0300 Subject: [PATCH 07/19] besouro automatic message --- .besouro/2015100811460663/actions.txt | 2 ++ src/org/unioulu/tol/sqatlab/gameoflife/Cell.java | 3 +++ 2 files changed, 5 insertions(+) diff --git a/.besouro/2015100811460663/actions.txt b/.besouro/2015100811460663/actions.txt index b5e8fc5..20a2e9b 100644 --- a/.besouro/2015100811460663/actions.txt +++ b/.besouro/2015100811460663/actions.txt @@ -45,3 +45,5 @@ RefactoringAction 1444299487704 Cell.java ADD void Stock(String, int) METHOD RefactoringAction 1444299493227 Cell.java RENAME Stock(String, int)=>Cell(String, int) METHOD RefactoringAction 1444299501868 Cell.java RENAME Cell(String, int)=>Cell(String) METHOD EditAction 1444299517005 TestCell.java 473 1 2 1 +CompilationAction 1444299517307 TestCell.java +EditAction 1444299517328 Cell.java 204 2 2 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java index e8de7b1..6d03f80 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java @@ -2,6 +2,9 @@ public class Cell { private String state = "Alive"; + public Cell(String state) { + this.state = state; + } public String getState() { return state; From be89831525a18fbd5f1691e386a535901ff82eab Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:21:32 +0300 Subject: [PATCH 08/19] besouro automatic message --- .besouro/2015100811460663/actions.txt | 6 ++++++ .../unioulu/tol/sqatlab/gameoflife/test/TestCell.java | 10 ---------- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/.besouro/2015100811460663/actions.txt b/.besouro/2015100811460663/actions.txt index 20a2e9b..ef624b4 100644 --- a/.besouro/2015100811460663/actions.txt +++ b/.besouro/2015100811460663/actions.txt @@ -47,3 +47,9 @@ RefactoringAction 1444299501868 Cell.java RENAME Cell(String, int)=>Cell(String) EditAction 1444299517005 TestCell.java 473 1 2 1 CompilationAction 1444299517307 TestCell.java EditAction 1444299517328 Cell.java 204 2 2 0 +CompilationAction 1444299517903 TestCell.java +CompilationAction 1444299586769 TestCell.java +CompilationAction 1444299586951 TestCell.java +CompilationAction 1444299597518 TestCell.java +CompilationAction 1444299597686 TestCell.java +EditAction 1444299692027 TestCell.java 292 1 2 1 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java index b2624f2..2fd19ef 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java @@ -12,16 +12,6 @@ public void testLiveCellWithNoNeighborDies() { //cell.update(0); assertEquals("Dead", cell.getState()); - /*Cell cell = new Cell("Alive"); - String state = ""; - Boolean hasNeighbors = false; - - if(hasNeighbors = false){ - state = "Dead"; - } - - assertEquals("Dead", state);*/ - } } From b67ffae19cf3e1220fb5eb0334e3338258b2e3d1 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:31:35 +0300 Subject: [PATCH 09/19] besouro automatic message --- .besouro/2015100811460663/actions.txt | 6 ++++++ src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.besouro/2015100811460663/actions.txt b/.besouro/2015100811460663/actions.txt index ef624b4..6351fcf 100644 --- a/.besouro/2015100811460663/actions.txt +++ b/.besouro/2015100811460663/actions.txt @@ -53,3 +53,9 @@ CompilationAction 1444299586951 TestCell.java CompilationAction 1444299597518 TestCell.java CompilationAction 1444299597686 TestCell.java EditAction 1444299692027 TestCell.java 292 1 2 1 +CompilationAction 1444299692423 TestCell.java +RefactoringAction 1444300150106 TestCell.java ADD import org.unioulu.tol.sqatlab.gameoflife.Cell IMPORT +CompilationAction 1444300155475 TestCell.java +UnitTestCaseAction 1444300166687 TestCell.java FAIL +UnitTestSessionAction 1444300166688 TestCell FAIL +EditAction 1444300295263 TestCell.java 341 1 2 1 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java index 2fd19ef..ec67a6e 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java @@ -3,6 +3,7 @@ import static org.junit.Assert.*; import org.junit.Test; +import org.unioulu.tol.sqatlab.gameoflife.Cell; public class TestCell { @@ -10,7 +11,7 @@ public class TestCell { public void testLiveCellWithNoNeighborDies() { Cell cell = new Cell("Alive"); //cell.update(0); - assertEquals("Dead", cell.getState()); + assertEquals("Alive", cell.getState()); } From 7f77c04475c25d75d104ac13accb0da2cf30190d Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:31:54 +0300 Subject: [PATCH 10/19] besouro automatic message --- .besouro/2015100811460663/actions.txt | 3 +++ .besouro/2015100811460663/besouroEpisodes.txt | 6 ++++++ .besouro/2015100811460663/randomHeuristicEpisodes.txt | 1 + .besouro/2015100811460663/zorroEpisodes.txt | 3 ++- src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java | 2 +- 5 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.besouro/2015100811460663/actions.txt b/.besouro/2015100811460663/actions.txt index 6351fcf..e442518 100644 --- a/.besouro/2015100811460663/actions.txt +++ b/.besouro/2015100811460663/actions.txt @@ -59,3 +59,6 @@ CompilationAction 1444300155475 TestCell.java UnitTestCaseAction 1444300166687 TestCell.java FAIL UnitTestSessionAction 1444300166688 TestCell FAIL EditAction 1444300295263 TestCell.java 341 1 2 1 +UnitTestCaseAction 1444300296442 TestCell.java OK +UnitTestSessionAction 1444300296443 TestCell OK +EditAction 1444300314281 TestCell.java 340 1 2 1 diff --git a/.besouro/2015100811460663/besouroEpisodes.txt b/.besouro/2015100811460663/besouroEpisodes.txt index 9247a3a..09ba9db 100644 --- a/.besouro/2015100811460663/besouroEpisodes.txt +++ b/.besouro/2015100811460663/besouroEpisodes.txt @@ -19,3 +19,9 @@ 1444298443634 refactoring 3 4476 true 1444298443635 refactoring 3 4476 true 1444298443636 refactoring 3 4476 true +1444300296443 test-first 2 1267 true +1444300296444 test-first 2 1267 true +1444300296445 test-first 2 1267 true +1444300296446 test-first 2 1267 true +1444300296447 test-first 2 1267 true +1444300296448 test-first 2 1267 true diff --git a/.besouro/2015100811460663/randomHeuristicEpisodes.txt b/.besouro/2015100811460663/randomHeuristicEpisodes.txt index da89aeb..57f2ff1 100644 --- a/.besouro/2015100811460663/randomHeuristicEpisodes.txt +++ b/.besouro/2015100811460663/randomHeuristicEpisodes.txt @@ -1 +1,2 @@ 1444298443616 refactoring 3 4476 true +1444300296443 test-first 2 1267 true diff --git a/.besouro/2015100811460663/zorroEpisodes.txt b/.besouro/2015100811460663/zorroEpisodes.txt index 4c1eb76..85e92ef 100644 --- a/.besouro/2015100811460663/zorroEpisodes.txt +++ b/.besouro/2015100811460663/zorroEpisodes.txt @@ -1 +1,2 @@ -1444298443616 refactoring 3 4476 false +1444298443616 refactoring 3 4476 true +1444300296443 test-first 2 1852 true diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java index ec67a6e..fa0fd25 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java @@ -11,7 +11,7 @@ public class TestCell { public void testLiveCellWithNoNeighborDies() { Cell cell = new Cell("Alive"); //cell.update(0); - assertEquals("Alive", cell.getState()); + assertEquals("Dead", cell.getState()); } From 5057fc15f3bc58b2ea58971a594273d81fb61564 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:32:33 +0300 Subject: [PATCH 11/19] besouro automatic message --- .besouro/2015100811460663/actions.txt | 4 ++++ src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.besouro/2015100811460663/actions.txt b/.besouro/2015100811460663/actions.txt index e442518..1d68f71 100644 --- a/.besouro/2015100811460663/actions.txt +++ b/.besouro/2015100811460663/actions.txt @@ -62,3 +62,7 @@ EditAction 1444300295263 TestCell.java 341 1 2 1 UnitTestCaseAction 1444300296442 TestCell.java OK UnitTestSessionAction 1444300296443 TestCell OK EditAction 1444300314281 TestCell.java 340 1 2 1 +UnitTestCaseAction 1444300315437 TestCell.java FAIL +UnitTestSessionAction 1444300315438 TestCell FAIL +RefactoringAction 1444300335450 Cell.java ADD void update(int) METHOD +EditAction 1444300353556 TestCell.java 338 1 3 1 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java index fa0fd25..edfc023 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java @@ -10,7 +10,7 @@ public class TestCell { @Test public void testLiveCellWithNoNeighborDies() { Cell cell = new Cell("Alive"); - //cell.update(0); + cell.update(0); assertEquals("Dead", cell.getState()); } From 65db16067a8b4e119d1e21d06861852cbd862a19 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:32:33 +0300 Subject: [PATCH 12/19] besouro automatic message --- .besouro/2015100811460663/actions.txt | 1 + src/org/unioulu/tol/sqatlab/gameoflife/Cell.java | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/.besouro/2015100811460663/actions.txt b/.besouro/2015100811460663/actions.txt index 1d68f71..bb81088 100644 --- a/.besouro/2015100811460663/actions.txt +++ b/.besouro/2015100811460663/actions.txt @@ -66,3 +66,4 @@ UnitTestCaseAction 1444300315437 TestCell.java FAIL UnitTestSessionAction 1444300315438 TestCell FAIL RefactoringAction 1444300335450 Cell.java ADD void update(int) METHOD EditAction 1444300353556 TestCell.java 338 1 3 1 +EditAction 1444300353823 Cell.java 277 3 2 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java index 6d03f80..01e5b8c 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java @@ -9,5 +9,10 @@ public Cell(String state) { public String getState() { return state; } + + public void update(int i) { + // TODO Auto-generated method stub + + } } From 3dd883c34c3b11ecccfc6d80c80e04908774f900 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:33:10 +0300 Subject: [PATCH 13/19] besouro automatic message --- .besouro/2015100811460663/actions.txt | 2 ++ src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.besouro/2015100811460663/actions.txt b/.besouro/2015100811460663/actions.txt index bb81088..57e18d5 100644 --- a/.besouro/2015100811460663/actions.txt +++ b/.besouro/2015100811460663/actions.txt @@ -67,3 +67,5 @@ UnitTestSessionAction 1444300315438 TestCell FAIL RefactoringAction 1444300335450 Cell.java ADD void update(int) METHOD EditAction 1444300353556 TestCell.java 338 1 3 1 EditAction 1444300353823 Cell.java 277 3 2 0 +RefactoringAction 1444300383923 Cell.java REMOVE update(int) METHOD +EditAction 1444300390825 TestCell.java 340 1 2 1 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java index edfc023..fa0fd25 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java @@ -10,7 +10,7 @@ public class TestCell { @Test public void testLiveCellWithNoNeighborDies() { Cell cell = new Cell("Alive"); - cell.update(0); + //cell.update(0); assertEquals("Dead", cell.getState()); } From 974e69914c9ade4b9b7a3a1a2850acbeb3cb959b Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:33:22 +0300 Subject: [PATCH 14/19] besouro automatic message --- .besouro/2015100811460663/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/Cell.java | 4 ++-- src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.besouro/2015100811460663/actions.txt b/.besouro/2015100811460663/actions.txt index 57e18d5..3318395 100644 --- a/.besouro/2015100811460663/actions.txt +++ b/.besouro/2015100811460663/actions.txt @@ -69,3 +69,6 @@ EditAction 1444300353556 TestCell.java 338 1 3 1 EditAction 1444300353823 Cell.java 277 3 2 0 RefactoringAction 1444300383923 Cell.java REMOVE update(int) METHOD EditAction 1444300390825 TestCell.java 340 1 2 1 +UnitTestCaseAction 1444300392734 TestCell.java FAIL +UnitTestSessionAction 1444300392735 TestCell FAIL +EditAction 1444300402333 TestCell.java 341 1 2 1 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java index 01e5b8c..3e37fed 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java @@ -10,9 +10,9 @@ public String getState() { return state; } - public void update(int i) { + /*public void update(int i) { // TODO Auto-generated method stub - } + }*/ } diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java index fa0fd25..ec67a6e 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java @@ -11,7 +11,7 @@ public class TestCell { public void testLiveCellWithNoNeighborDies() { Cell cell = new Cell("Alive"); //cell.update(0); - assertEquals("Dead", cell.getState()); + assertEquals("Alive", cell.getState()); } From 6f96a2536918944b48222d0bbf393a1defff50b3 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:33:31 +0300 Subject: [PATCH 15/19] besouro automatic message --- .besouro/2015100811460663/actions.txt | 3 +++ .besouro/2015100811460663/besouroEpisodes.txt | 6 ++++++ .besouro/2015100811460663/randomHeuristicEpisodes.txt | 1 + .besouro/2015100811460663/zorroEpisodes.txt | 1 + src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java | 2 +- 5 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.besouro/2015100811460663/actions.txt b/.besouro/2015100811460663/actions.txt index 3318395..e8c0bf3 100644 --- a/.besouro/2015100811460663/actions.txt +++ b/.besouro/2015100811460663/actions.txt @@ -72,3 +72,6 @@ EditAction 1444300390825 TestCell.java 340 1 2 1 UnitTestCaseAction 1444300392734 TestCell.java FAIL UnitTestSessionAction 1444300392735 TestCell FAIL EditAction 1444300402333 TestCell.java 341 1 2 1 +UnitTestCaseAction 1444300403553 TestCell.java OK +UnitTestSessionAction 1444300403554 TestCell OK +EditAction 1444300411513 TestCell.java 340 1 2 1 diff --git a/.besouro/2015100811460663/besouroEpisodes.txt b/.besouro/2015100811460663/besouroEpisodes.txt index 09ba9db..0147376 100644 --- a/.besouro/2015100811460663/besouroEpisodes.txt +++ b/.besouro/2015100811460663/besouroEpisodes.txt @@ -25,3 +25,9 @@ 1444300296446 test-first 2 1267 true 1444300296447 test-first 2 1267 true 1444300296448 test-first 2 1267 true +1444300403554 refactoring 3 89 true +1444300403555 refactoring 3 89 true +1444300403556 refactoring 3 89 true +1444300403557 refactoring 3 89 true +1444300403558 refactoring 3 89 true +1444300403559 refactoring 3 89 true diff --git a/.besouro/2015100811460663/randomHeuristicEpisodes.txt b/.besouro/2015100811460663/randomHeuristicEpisodes.txt index 57f2ff1..1d4f854 100644 --- a/.besouro/2015100811460663/randomHeuristicEpisodes.txt +++ b/.besouro/2015100811460663/randomHeuristicEpisodes.txt @@ -1,2 +1,3 @@ 1444298443616 refactoring 3 4476 true 1444300296443 test-first 2 1267 true +1444300403554 refactoring 3 89 false diff --git a/.besouro/2015100811460663/zorroEpisodes.txt b/.besouro/2015100811460663/zorroEpisodes.txt index 85e92ef..7eb3da1 100644 --- a/.besouro/2015100811460663/zorroEpisodes.txt +++ b/.besouro/2015100811460663/zorroEpisodes.txt @@ -1,2 +1,3 @@ 1444298443616 refactoring 3 4476 true 1444300296443 test-first 2 1852 true +1444300403554 refactoring 3 107 true diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java index ec67a6e..fa0fd25 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java @@ -11,7 +11,7 @@ public class TestCell { public void testLiveCellWithNoNeighborDies() { Cell cell = new Cell("Alive"); //cell.update(0); - assertEquals("Alive", cell.getState()); + assertEquals("Dead", cell.getState()); } From cec3c16f52914b56fd992b3b2be1a1c6dc13f192 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:37:20 +0300 Subject: [PATCH 16/19] besouro automatic message --- .besouro/2015100811460663/actions.txt | 8 ++++++++ src/org/unioulu/tol/sqatlab/gameoflife/Cell.java | 14 +++++++++++--- .../tol/sqatlab/gameoflife/test/TestCell.java | 2 +- 3 files changed, 20 insertions(+), 4 deletions(-) diff --git a/.besouro/2015100811460663/actions.txt b/.besouro/2015100811460663/actions.txt index e8c0bf3..32adf91 100644 --- a/.besouro/2015100811460663/actions.txt +++ b/.besouro/2015100811460663/actions.txt @@ -75,3 +75,11 @@ EditAction 1444300402333 TestCell.java 341 1 2 1 UnitTestCaseAction 1444300403553 TestCell.java OK UnitTestSessionAction 1444300403554 TestCell OK EditAction 1444300411513 TestCell.java 340 1 2 1 +RefactoringAction 1444300423232 Cell.java ADD void update(int) METHOD +RefactoringAction 1444300536978 Cell.java ADD void setQuantity(int) METHOD +RefactoringAction 1444300542026 Cell.java RENAME setQuantity(int)=>void setState(int) METHOD +RefactoringAction 1444300545056 Cell.java RENAME setState(int)=>void setState(s) METHOD +RefactoringAction 1444300547085 Cell.java RENAME setState(s)=>void setState(String) METHOD +RefactoringAction 1444300566746 Cell.java REMOVE setState(String) METHOD +RefactoringAction 1444300589671 Cell.java ADD void setState(String) METHOD +EditAction 1444300640081 TestCell.java 338 1 3 1 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java index 3e37fed..98c9867 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java @@ -9,10 +9,18 @@ public Cell(String state) { public String getState() { return state; } + + public void setState(String state) { + this.state = state; + } - /*public void update(int i) { - // TODO Auto-generated method stub + public void update(int i) { + if(i<=1){ + this.state = "Dead"; + }else{ + this.state = "Alive"; + } - }*/ + } } diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java index fa0fd25..edfc023 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java @@ -10,7 +10,7 @@ public class TestCell { @Test public void testLiveCellWithNoNeighborDies() { Cell cell = new Cell("Alive"); - //cell.update(0); + cell.update(0); assertEquals("Dead", cell.getState()); } From 06710acc619ff4a4d0f3ff29e27fcc4ca698a3b1 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:37:36 +0300 Subject: [PATCH 17/19] besouro automatic message --- .besouro/2015100811460663/actions.txt | 3 +++ .besouro/2015100811460663/besouroEpisodes.txt | 8 ++++++++ .besouro/2015100811460663/randomHeuristicEpisodes.txt | 1 + .besouro/2015100811460663/zorroEpisodes.txt | 1 + src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java | 2 +- 5 files changed, 14 insertions(+), 1 deletion(-) diff --git a/.besouro/2015100811460663/actions.txt b/.besouro/2015100811460663/actions.txt index 32adf91..c0a8353 100644 --- a/.besouro/2015100811460663/actions.txt +++ b/.besouro/2015100811460663/actions.txt @@ -83,3 +83,6 @@ RefactoringAction 1444300547085 Cell.java RENAME setState(s)=>void setState(Stri RefactoringAction 1444300566746 Cell.java REMOVE setState(String) METHOD RefactoringAction 1444300589671 Cell.java ADD void setState(String) METHOD EditAction 1444300640081 TestCell.java 338 1 3 1 +UnitTestCaseAction 1444300646148 TestCell.java OK +UnitTestSessionAction 1444300646149 TestCell OK +EditAction 1444300656645 TestCell.java 338 1 3 1 diff --git a/.besouro/2015100811460663/besouroEpisodes.txt b/.besouro/2015100811460663/besouroEpisodes.txt index 0147376..daf1805 100644 --- a/.besouro/2015100811460663/besouroEpisodes.txt +++ b/.besouro/2015100811460663/besouroEpisodes.txt @@ -31,3 +31,11 @@ 1444300403557 refactoring 3 89 true 1444300403558 refactoring 3 89 true 1444300403559 refactoring 3 89 true +1444300646149 refactoring 3 234 true +1444300646150 refactoring 3 234 true +1444300646151 refactoring 3 234 true +1444300646152 refactoring 3 234 true +1444300646153 refactoring 3 234 true +1444300646154 refactoring 1A 234 true +1444300646155 refactoring 3 234 true +1444300646156 refactoring 3 234 true diff --git a/.besouro/2015100811460663/randomHeuristicEpisodes.txt b/.besouro/2015100811460663/randomHeuristicEpisodes.txt index 1d4f854..6b30026 100644 --- a/.besouro/2015100811460663/randomHeuristicEpisodes.txt +++ b/.besouro/2015100811460663/randomHeuristicEpisodes.txt @@ -1,3 +1,4 @@ 1444298443616 refactoring 3 4476 true 1444300296443 test-first 2 1267 true 1444300403554 refactoring 3 89 false +1444300646149 refactoring 3 234 false diff --git a/.besouro/2015100811460663/zorroEpisodes.txt b/.besouro/2015100811460663/zorroEpisodes.txt index 7eb3da1..710ad79 100644 --- a/.besouro/2015100811460663/zorroEpisodes.txt +++ b/.besouro/2015100811460663/zorroEpisodes.txt @@ -1,3 +1,4 @@ 1444298443616 refactoring 3 4476 true 1444300296443 test-first 2 1852 true 1444300403554 refactoring 3 107 true +1444300646149 refactoring 3 242 true diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java index edfc023..9d9e26a 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java @@ -10,7 +10,7 @@ public class TestCell { @Test public void testLiveCellWithNoNeighborDies() { Cell cell = new Cell("Alive"); - cell.update(0); + cell.update(2); assertEquals("Dead", cell.getState()); } From eab8349b6c7046334a7ebbe3502b57511cb23e95 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:37:45 +0300 Subject: [PATCH 18/19] besouro automatic message --- .besouro/2015100811460663/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.besouro/2015100811460663/actions.txt b/.besouro/2015100811460663/actions.txt index c0a8353..3c17abb 100644 --- a/.besouro/2015100811460663/actions.txt +++ b/.besouro/2015100811460663/actions.txt @@ -86,3 +86,6 @@ EditAction 1444300640081 TestCell.java 338 1 3 1 UnitTestCaseAction 1444300646148 TestCell.java OK UnitTestSessionAction 1444300646149 TestCell OK EditAction 1444300656645 TestCell.java 338 1 3 1 +UnitTestCaseAction 1444300658726 TestCell.java FAIL +UnitTestSessionAction 1444300658727 TestCell FAIL +EditAction 1444300664990 TestCell.java 338 1 3 1 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java index 9d9e26a..5cede99 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java @@ -10,7 +10,7 @@ public class TestCell { @Test public void testLiveCellWithNoNeighborDies() { Cell cell = new Cell("Alive"); - cell.update(2); + cell.update(1); assertEquals("Dead", cell.getState()); } From 0df21a9c224ecfcb037adef08be947e8bec3a775 Mon Sep 17 00:00:00 2001 From: dlzc Date: Thu, 8 Oct 2015 13:40:22 +0300 Subject: [PATCH 19/19] One simple test added. --- .besouro/2015100811460663/actions.txt | 2 ++ .besouro/2015100811460663/besouroEpisodes.txt | 1 + .besouro/2015100811460663/randomHeuristicEpisodes.txt | 1 + .besouro/2015100811460663/zorroEpisodes.txt | 1 + 4 files changed, 5 insertions(+) diff --git a/.besouro/2015100811460663/actions.txt b/.besouro/2015100811460663/actions.txt index 3c17abb..4f4b2d7 100644 --- a/.besouro/2015100811460663/actions.txt +++ b/.besouro/2015100811460663/actions.txt @@ -89,3 +89,5 @@ EditAction 1444300656645 TestCell.java 338 1 3 1 UnitTestCaseAction 1444300658726 TestCell.java FAIL UnitTestSessionAction 1444300658727 TestCell FAIL EditAction 1444300664990 TestCell.java 338 1 3 1 +UnitTestCaseAction 1444300667341 TestCell.java OK +UnitTestSessionAction 1444300667342 TestCell OK diff --git a/.besouro/2015100811460663/besouroEpisodes.txt b/.besouro/2015100811460663/besouroEpisodes.txt index daf1805..eff78ce 100644 --- a/.besouro/2015100811460663/besouroEpisodes.txt +++ b/.besouro/2015100811460663/besouroEpisodes.txt @@ -39,3 +39,4 @@ 1444300646154 refactoring 1A 234 true 1444300646155 refactoring 3 234 true 1444300646156 refactoring 3 234 true +1444300667342 regression 2 10 true diff --git a/.besouro/2015100811460663/randomHeuristicEpisodes.txt b/.besouro/2015100811460663/randomHeuristicEpisodes.txt index 6b30026..6a132fd 100644 --- a/.besouro/2015100811460663/randomHeuristicEpisodes.txt +++ b/.besouro/2015100811460663/randomHeuristicEpisodes.txt @@ -2,3 +2,4 @@ 1444300296443 test-first 2 1267 true 1444300403554 refactoring 3 89 false 1444300646149 refactoring 3 234 false +1444300667342 regression 2 10 false diff --git a/.besouro/2015100811460663/zorroEpisodes.txt b/.besouro/2015100811460663/zorroEpisodes.txt index 710ad79..86f5279 100644 --- a/.besouro/2015100811460663/zorroEpisodes.txt +++ b/.besouro/2015100811460663/zorroEpisodes.txt @@ -2,3 +2,4 @@ 1444300296443 test-first 2 1852 true 1444300403554 refactoring 3 107 true 1444300646149 refactoring 3 242 true +1444300667342 regression 2 21 true