From 3a9fcd68c34e89a422fcfed6f89376297b72c7d8 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:17:28 +0300 Subject: [PATCH 01/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 2 ++ .besouro/20151008121703649/besouroEpisodes.txt | 0 .besouro/20151008121703649/disagreements.txt | 0 .besouro/20151008121703649/randomHeuristicEpisodes.txt | 0 .besouro/20151008121703649/userComments.txt | 0 .besouro/20151008121703649/zorroEpisodes.txt | 0 6 files changed, 2 insertions(+) create mode 100644 .besouro/20151008121703649/actions.txt create mode 100644 .besouro/20151008121703649/besouroEpisodes.txt create mode 100644 .besouro/20151008121703649/disagreements.txt create mode 100644 .besouro/20151008121703649/randomHeuristicEpisodes.txt create mode 100644 .besouro/20151008121703649/userComments.txt create mode 100644 .besouro/20151008121703649/zorroEpisodes.txt diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt new file mode 100644 index 0000000..7a9f46c --- /dev/null +++ b/.besouro/20151008121703649/actions.txt @@ -0,0 +1,2 @@ +FileOpenedAction 1444295823937 Grid.java 68 0 0 0 +EditAction 1444295848041 SudokuVerifier.java 4647 8 38 0 diff --git a/.besouro/20151008121703649/besouroEpisodes.txt b/.besouro/20151008121703649/besouroEpisodes.txt new file mode 100644 index 0000000..e69de29 diff --git a/.besouro/20151008121703649/disagreements.txt b/.besouro/20151008121703649/disagreements.txt new file mode 100644 index 0000000..e69de29 diff --git a/.besouro/20151008121703649/randomHeuristicEpisodes.txt b/.besouro/20151008121703649/randomHeuristicEpisodes.txt new file mode 100644 index 0000000..e69de29 diff --git a/.besouro/20151008121703649/userComments.txt b/.besouro/20151008121703649/userComments.txt new file mode 100644 index 0000000..e69de29 diff --git a/.besouro/20151008121703649/zorroEpisodes.txt b/.besouro/20151008121703649/zorroEpisodes.txt new file mode 100644 index 0000000..e69de29 From e9c1c418725d4ce4f7cb6650c07b3e479f4423db Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:17:28 +0300 Subject: [PATCH 02/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 7a9f46c..dfe0625 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -1,2 +1,3 @@ FileOpenedAction 1444295823937 Grid.java 68 0 0 0 EditAction 1444295848041 SudokuVerifier.java 4647 8 38 0 +EditAction 1444295848164 TestSudokuVerifier.java 3861 12 43 12 From ae9751e7d5278f2d4e9037a61e4166dfe668419a Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:22:52 +0300 Subject: [PATCH 03/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 10 ++++++++++ .../unioulu/tol/sqatlab/gameoflife/test/TestCell.java | 9 ++++++--- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index dfe0625..1f987ba 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -1,3 +1,13 @@ FileOpenedAction 1444295823937 Grid.java 68 0 0 0 EditAction 1444295848041 SudokuVerifier.java 4647 8 38 0 EditAction 1444295848164 TestSudokuVerifier.java 3861 12 43 12 +FileOpenedAction 1444295859588 SudokuVerifier.java 4647 8 38 0 +FileOpenedAction 1444296094645 TestCell.java 200 1 1 0 +RefactoringAction 1444296103647 TestCell.java RENAME test()=>void test FIELD +RefactoringAction 1444296104656 TestCell.java RENAME test=>void testLi FIELD +RefactoringAction 1444296106665 TestCell.java RENAME testLi=>void testLiveCell FIELD +RefactoringAction 1444296109174 TestCell.java RENAME testLiveCell=>void testLiveCellWithNo FIELD +RefactoringAction 1444296111182 TestCell.java RENAME testLiveCellWithNo=>void testLiveCellWithNoNeighbo FIELD +RefactoringAction 1444296114193 TestCell.java RENAME testLiveCellWithNoNeighbo=>void testLiveCellWithNoNeighborDies() METHOD +RefactoringAction 1444296163306 TestCell.java ADD import org.unioulu.tol.sqatlab.gameoflife.Cell IMPORT +EditAction 1444296172067 TestCell.java 334 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 d8de09e..9854f4a 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java @@ -3,12 +3,15 @@ import static org.junit.Assert.*; import org.junit.Test; +import org.unioulu.tol.sqatlab.gameoflife.Cell; public class TestCell { @Test - public void test() { - fail("Not yet implemented"); + public void testLiveCellWithNoNeighborDies() + { + Cell cell = new Cell("Alive"); + cell.update(); + assertEquals("Dead", cell.getState()); } - } From f7f8c936c3a922e2518fe81a9aae37f714c9d214 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:23:00 +0300 Subject: [PATCH 04/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 5 +++++ src/org/unioulu/tol/sqatlab/gameoflife/Cell.java | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 1f987ba..0a5c623 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -11,3 +11,8 @@ RefactoringAction 1444296111182 TestCell.java RENAME testLiveCellWithNo=>void te RefactoringAction 1444296114193 TestCell.java RENAME testLiveCellWithNoNeighbo=>void testLiveCellWithNoNeighborDies() METHOD RefactoringAction 1444296163306 TestCell.java ADD import org.unioulu.tol.sqatlab.gameoflife.Cell IMPORT EditAction 1444296172067 TestCell.java 334 1 3 1 +CompilationAction 1444296172305 TestCell.java +CompilationAction 1444296172305 TestCell.java +CompilationAction 1444296172306 TestCell.java +RefactoringAction 1444296179694 Cell.java ADD String status FIELD +EditAction 1444296180163 Cell.java 92 0 0 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java index b66e9c8..cec44cf 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java @@ -1,5 +1,6 @@ package org.unioulu.tol.sqatlab.gameoflife; public class Cell { - + + public String status; } From 4ada5bd2b38375291f3f4b71ffef92fc9bcff225 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:24:08 +0300 Subject: [PATCH 05/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 7 +++++++ src/org/unioulu/tol/sqatlab/gameoflife/Cell.java | 6 +++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 0a5c623..349ef66 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -16,3 +16,10 @@ CompilationAction 1444296172305 TestCell.java CompilationAction 1444296172306 TestCell.java RefactoringAction 1444296179694 Cell.java ADD String status FIELD EditAction 1444296180163 Cell.java 92 0 0 0 +CompilationAction 1444296180379 TestCell.java +CompilationAction 1444296180379 TestCell.java +CompilationAction 1444296180380 TestCell.java +RefactoringAction 1444296222203 Cell.java ADD Cell(String) METHOD +RefactoringAction 1444296232404 Cell.java REMOVE Cell(String) METHOD +RefactoringAction 1444296235411 Cell.java ADD Cell(String) METHOD +EditAction 1444296247989 Cell.java 150 1 1 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java index cec44cf..624642e 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java @@ -1,6 +1,10 @@ package org.unioulu.tol.sqatlab.gameoflife; public class Cell { - + public String status; + + public Cell(String string) { + this.status = string; + } } From dc24d3f289b1e4d226a840f265fc8a3d78372efc Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:25:37 +0300 Subject: [PATCH 06/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 8 ++++++++ src/org/unioulu/tol/sqatlab/gameoflife/Cell.java | 9 +++++++++ .../unioulu/tol/sqatlab/gameoflife/test/TestCell.java | 2 +- 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 349ef66..c5b5612 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -23,3 +23,11 @@ RefactoringAction 1444296222203 Cell.java ADD Cell(String) METHOD RefactoringAction 1444296232404 Cell.java REMOVE Cell(String) METHOD RefactoringAction 1444296235411 Cell.java ADD Cell(String) METHOD EditAction 1444296247989 Cell.java 150 1 1 0 +CompilationAction 1444296248105 TestCell.java +CompilationAction 1444296248106 TestCell.java +CompilationAction 1444296258397 TestCell.java +CompilationAction 1444296258557 TestCell.java +CompilationAction 1444296258558 TestCell.java +RefactoringAction 1444296280952 Cell.java ADD void update() METHOD +RefactoringAction 1444296288977 Cell.java RENAME update()=>void update(int) METHOD +EditAction 1444296337968 Cell.java 266 2 2 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java index 624642e..f605d30 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java @@ -7,4 +7,13 @@ public class Cell { public Cell(String string) { this.status = string; } + + + public void update(int aliveSurroundingCells) + { + if(aliveSurroundingCells==0) + { + status = "Dead"; + } + } } diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java index 9854f4a..e605e04 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(); + cell.update(0); assertEquals("Dead", cell.getState()); } } From 07c349b54a38107f34a8030b953308e0980929d0 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:28:00 +0300 Subject: [PATCH 07/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 7 +++++++ src/org/unioulu/tol/sqatlab/gameoflife/Cell.java | 9 +++++++++ 2 files changed, 16 insertions(+) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index c5b5612..d2849fc 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -31,3 +31,10 @@ CompilationAction 1444296258558 TestCell.java RefactoringAction 1444296280952 Cell.java ADD void update() METHOD RefactoringAction 1444296288977 Cell.java RENAME update()=>void update(int) METHOD EditAction 1444296337968 Cell.java 266 2 2 0 +CompilationAction 1444296338525 TestCell.java +FileOpenedAction 1444296373449 TestSudokuVerifier.java 3861 12 43 12 +FileOpenedAction 1444296384235 Item.java 674 7 9 0 +RefactoringAction 1444296401641 Cell.java ADD String getName() METHOD +RefactoringAction 1444296401643 Cell.java ADD void setName(String) METHOD +RefactoringAction 1444296419721 Cell.java RENAME getName()=>String getStatus() METHOD +EditAction 1444296480236 Cell.java 386 4 4 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java index f605d30..5965afe 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java @@ -8,6 +8,15 @@ public Cell(String string) { this.status = string; } + public String getStatus() { + return status; + } + + public void setName(String status) { + this.status = status; + } + + public void update(int aliveSurroundingCells) { From 1c3ef588f9a409d4672f607d8c2fb6e69fbe6a72 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:28:05 +0300 Subject: [PATCH 08/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/Cell.java | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index d2849fc..7e9991d 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -38,3 +38,6 @@ RefactoringAction 1444296401641 Cell.java ADD String getName() METHOD RefactoringAction 1444296401643 Cell.java ADD void setName(String) METHOD RefactoringAction 1444296419721 Cell.java RENAME getName()=>String getStatus() METHOD EditAction 1444296480236 Cell.java 386 4 4 0 +CompilationAction 1444296480573 TestCell.java +RefactoringAction 1444296485004 Cell.java RENAME setName(String)=>void setStatus(String) METHOD +EditAction 1444296485410 Cell.java 388 4 4 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java index 5965afe..c77dad2 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java @@ -12,7 +12,7 @@ public String getStatus() { return status; } - public void setName(String status) { + public void setStatus(String status) { this.status = status; } From e98d7e922c51e07b6cf90e77f3054596247d3c58 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:28:51 +0300 Subject: [PATCH 09/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 2 ++ src/org/unioulu/tol/sqatlab/gameoflife/Cell.java | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 7e9991d..e20f546 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -41,3 +41,5 @@ EditAction 1444296480236 Cell.java 386 4 4 0 CompilationAction 1444296480573 TestCell.java RefactoringAction 1444296485004 Cell.java RENAME setName(String)=>void setStatus(String) METHOD EditAction 1444296485410 Cell.java 388 4 4 0 +CompilationAction 1444296485653 TestCell.java +EditAction 1444296531969 Cell.java 390 4 4 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java index c77dad2..3314310 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java @@ -4,8 +4,8 @@ public class Cell { public String status; - public Cell(String string) { - this.status = string; + public Cell(String status) { + this.setStatus(status); } public String getStatus() { From e20262e8f67bf4695c67c74e53a54679c4a660d5 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:29:15 +0300 Subject: [PATCH 10/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 1 + src/org/unioulu/tol/sqatlab/gameoflife/Cell.java | 9 ++++++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index e20f546..b722025 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -43,3 +43,4 @@ RefactoringAction 1444296485004 Cell.java RENAME setName(String)=>void setStatus EditAction 1444296485410 Cell.java 388 4 4 0 CompilationAction 1444296485653 TestCell.java EditAction 1444296531969 Cell.java 390 4 4 0 +EditAction 1444296555697 Cell.java 396 4 4 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java index 3314310..4f1051c 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java @@ -4,15 +4,18 @@ public class Cell { public String status; - public Cell(String status) { + public Cell(String status) + { this.setStatus(status); } - public String getStatus() { + public String getStatus() + { return status; } - public void setStatus(String status) { + public void setStatus(String status) + { this.status = status; } From 3fa46002a3e18b0527f889bfe679e89be171d148 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:29:19 +0300 Subject: [PATCH 11/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 1 + src/org/unioulu/tol/sqatlab/gameoflife/Cell.java | 1 + 2 files changed, 2 insertions(+) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index b722025..9bea4ae 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -44,3 +44,4 @@ EditAction 1444296485410 Cell.java 388 4 4 0 CompilationAction 1444296485653 TestCell.java EditAction 1444296531969 Cell.java 390 4 4 0 EditAction 1444296555697 Cell.java 396 4 4 0 +EditAction 1444296559749 Cell.java 398 4 4 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java index 4f1051c..b0665c1 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java @@ -4,6 +4,7 @@ public class Cell { public String status; + public Cell(String status) { this.setStatus(status); From 9602dc8cda3257833fc54fcefcbec72b24ff3969 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:30:01 +0300 Subject: [PATCH 12/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 5 +++++ src/org/unioulu/tol/sqatlab/gameoflife/Cell.java | 16 ++++++++-------- 2 files changed, 13 insertions(+), 8 deletions(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 9bea4ae..8f53bca 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -45,3 +45,8 @@ CompilationAction 1444296485653 TestCell.java EditAction 1444296531969 Cell.java 390 4 4 0 EditAction 1444296555697 Cell.java 396 4 4 0 EditAction 1444296559749 Cell.java 398 4 4 0 +RefactoringAction 1444296571422 Cell.java RENAME getStatus()=>String getStat() METHOD +RefactoringAction 1444296572433 Cell.java RENAME getStat()=>String getState() METHOD +RefactoringAction 1444296575942 Cell.java RENAME status=>String state FIELD +RefactoringAction 1444296590483 Cell.java RENAME setStatus(String)=>void setState(String) METHOD +EditAction 1444296601546 Cell.java 388 4 4 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java index b0665c1..64ae53d 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java @@ -2,22 +2,22 @@ public class Cell { - public String status; + public String state; - public Cell(String status) + public Cell(String state) { - this.setStatus(status); + this.setStatus(state); } - public String getStatus() + public String getState() { - return status; + return state; } - public void setStatus(String status) + public void setState(String state) { - this.status = status; + this.state = state; } @@ -26,7 +26,7 @@ public void update(int aliveSurroundingCells) { if(aliveSurroundingCells==0) { - status = "Dead"; + state = "Dead"; } } } From ce688e4813190c108c9398a9b1d0807239aa03b6 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:39:45 +0300 Subject: [PATCH 13/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 17 +++++++++++++++++ .../unioulu/tol/sqatlab/gameoflife/Cell.java | 2 +- .../tol/sqatlab/gameoflife/test/TestCell.java | 8 ++++++++ 3 files changed, 26 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 8f53bca..5d94040 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -50,3 +50,20 @@ RefactoringAction 1444296572433 Cell.java RENAME getStat()=>String getState() ME RefactoringAction 1444296575942 Cell.java RENAME status=>String state FIELD RefactoringAction 1444296590483 Cell.java RENAME setStatus(String)=>void setState(String) METHOD EditAction 1444296601546 Cell.java 388 4 4 0 +CompilationAction 1444296601762 Cell.java +CompilationAction 1444296607779 Cell.java +UnitTestCaseAction 1444296619487 TestPortfolio.java OK +UnitTestSessionAction 1444296619489 TestPortfolio OK +UnitTestCaseAction 1444296653909 TestCell.java OK +UnitTestSessionAction 1444296653910 TestCell OK +RefactoringAction 1444297108979 TestCell.java ADD void test FIELD +RefactoringAction 1444297113492 TestCell.java RENAME test=>void testLiveCellWith FIELD +RefactoringAction 1444297118005 TestCell.java RENAME testLiveCellWith=>void testLiveCellWithOneNeighbour FIELD +RefactoringAction 1444297125016 TestCell.java RENAME testLiveCellWithOneNeighbour=>void testLiveCellWithTwo FIELD +RefactoringAction 1444297129030 TestCell.java RENAME testLiveCellWithTwo=>void testLiveCellWithTwoS FIELD +RefactoringAction 1444297130042 TestCell.java RENAME testLiveCellWithTwoS=>void testLiveCellWithTwo FIELD +RefactoringAction 1444297137553 TestCell.java RENAME testLiveCellWithTwo=>void testLiveCellWithTwoNeighb FIELD +RefactoringAction 1444297139065 TestCell.java RENAME testLiveCellWithTwoNeighb=>void testLiveCellWithTwoNeighbour FIELD +RefactoringAction 1444297141077 TestCell.java RENAME testLiveCellWithTwoNeighbour=>void testLiveCellWithTwoNeighbor FIELD +RefactoringAction 1444297146093 TestCell.java RENAME testLiveCellWithTwoNeighbor=>void testLiveCellWithTwoNeighborLives() METHOD +EditAction 1444297185623 TestCell.java 491 2 6 2 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java index 64ae53d..6eef69e 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java @@ -7,7 +7,7 @@ public class Cell { public Cell(String state) { - this.setStatus(state); + this.setState(state); } public String getState() diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java index e605e04..c07ab0d 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java @@ -14,4 +14,12 @@ public void testLiveCellWithNoNeighborDies() cell.update(0); assertEquals("Dead", cell.getState()); } + + @Test + public void testLiveCellWithTwoNeighborLives() + { + Cell cell = new Cell("Alive"); + cell.update(2); + assertEquals("Alive", cell.getState()); + } } From 2a2a6fffb849facf5d5110192b0e8ad81fcad14d Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:41:59 +0300 Subject: [PATCH 14/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 1 + src/org/unioulu/tol/sqatlab/gameoflife/Cell.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 5d94040..6dcec9f 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -67,3 +67,4 @@ RefactoringAction 1444297139065 TestCell.java RENAME testLiveCellWithTwoNeighb=> RefactoringAction 1444297141077 TestCell.java RENAME testLiveCellWithTwoNeighbour=>void testLiveCellWithTwoNeighbor FIELD RefactoringAction 1444297146093 TestCell.java RENAME testLiveCellWithTwoNeighbor=>void testLiveCellWithTwoNeighborLives() METHOD EditAction 1444297185623 TestCell.java 491 2 6 2 +EditAction 1444297319491 Cell.java 386 4 4 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java index 6eef69e..c5a91dc 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java @@ -24,7 +24,7 @@ public void setState(String state) public void update(int aliveSurroundingCells) { - if(aliveSurroundingCells==0) + if(aliveSurroundingCells<2) { state = "Dead"; } From af20ada5bbeb3f7f2af7d6b49ea6f35b236fc68a Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:42:15 +0300 Subject: [PATCH 15/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 1 + src/org/unioulu/tol/sqatlab/gameoflife/Cell.java | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 6dcec9f..148c94b 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -68,3 +68,4 @@ RefactoringAction 1444297141077 TestCell.java RENAME testLiveCellWithTwoNeighbou RefactoringAction 1444297146093 TestCell.java RENAME testLiveCellWithTwoNeighbor=>void testLiveCellWithTwoNeighborLives() METHOD EditAction 1444297185623 TestCell.java 491 2 6 2 EditAction 1444297319491 Cell.java 386 4 4 0 +EditAction 1444297335621 Cell.java 448 4 5 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java index c5a91dc..ed34ea6 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java @@ -28,5 +28,10 @@ public void update(int aliveSurroundingCells) { state = "Dead"; } + + if(aliveSurroundingCells>=2) + { + state = "Alive"; + } } } From 803dc826373cb47a206689005f20abf760abf010 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:42:29 +0300 Subject: [PATCH 16/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 148c94b..432a689 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -69,3 +69,6 @@ RefactoringAction 1444297146093 TestCell.java RENAME testLiveCellWithTwoNeighbor EditAction 1444297185623 TestCell.java 491 2 6 2 EditAction 1444297319491 Cell.java 386 4 4 0 EditAction 1444297335621 Cell.java 448 4 5 0 +UnitTestCaseAction 1444297337392 TestCell.java OK +UnitTestSessionAction 1444297337393 TestCell OK +EditAction 1444297349745 TestCell.java 490 2 6 2 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java index c07ab0d..7c6f810 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java @@ -20,6 +20,6 @@ public void testLiveCellWithTwoNeighborLives() { Cell cell = new Cell("Alive"); cell.update(2); - assertEquals("Alive", cell.getState()); + assertEquals("Dead", cell.getState()); } } From 32e236a69f5dfe803e5d1b292f4e2b7d5c20674a Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:42:40 +0300 Subject: [PATCH 17/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 432a689..a4c7e48 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -72,3 +72,6 @@ EditAction 1444297335621 Cell.java 448 4 5 0 UnitTestCaseAction 1444297337392 TestCell.java OK UnitTestSessionAction 1444297337393 TestCell OK EditAction 1444297349745 TestCell.java 490 2 6 2 +UnitTestCaseAction 1444297351454 TestCell.java FAIL +UnitTestSessionAction 1444297351455 TestCell FAIL +EditAction 1444297360709 TestCell.java 491 2 6 2 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java index 7c6f810..c07ab0d 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java @@ -20,6 +20,6 @@ public void testLiveCellWithTwoNeighborLives() { Cell cell = new Cell("Alive"); cell.update(2); - assertEquals("Dead", cell.getState()); + assertEquals("Alive", cell.getState()); } } From c002887cedef94000d012a4417aece2d11047881 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:42:46 +0300 Subject: [PATCH 18/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 1 + src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index a4c7e48..157d27a 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -75,3 +75,4 @@ EditAction 1444297349745 TestCell.java 490 2 6 2 UnitTestCaseAction 1444297351454 TestCell.java FAIL UnitTestSessionAction 1444297351455 TestCell FAIL EditAction 1444297360709 TestCell.java 491 2 6 2 +EditAction 1444297366205 TestCell.java 492 2 6 2 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java index c07ab0d..d716f54 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java @@ -12,7 +12,7 @@ public void testLiveCellWithNoNeighborDies() { Cell cell = new Cell("Alive"); cell.update(0); - assertEquals("Dead", cell.getState()); + assertEquals("Alive", cell.getState()); } @Test From adf335044b673de46d369ac8d330531fb5c5f1b0 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:42:55 +0300 Subject: [PATCH 19/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 157d27a..717375c 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -76,3 +76,6 @@ UnitTestCaseAction 1444297351454 TestCell.java FAIL UnitTestSessionAction 1444297351455 TestCell FAIL EditAction 1444297360709 TestCell.java 491 2 6 2 EditAction 1444297366205 TestCell.java 492 2 6 2 +UnitTestCaseAction 1444297368052 TestCell.java FAIL +UnitTestSessionAction 1444297368052 TestCell FAIL +EditAction 1444297375456 TestCell.java 491 2 6 2 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java index d716f54..c07ab0d 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java @@ -12,7 +12,7 @@ public void testLiveCellWithNoNeighborDies() { Cell cell = new Cell("Alive"); cell.update(0); - assertEquals("Alive", cell.getState()); + assertEquals("Dead", cell.getState()); } @Test From 95b5644735c00bbc47187609840500f5a2e42c1e Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:43:40 +0300 Subject: [PATCH 20/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 3 +++ .../unioulu/tol/sqatlab/gameoflife/test/TestCell.java | 10 ++++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 717375c..188b860 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -79,3 +79,6 @@ EditAction 1444297366205 TestCell.java 492 2 6 2 UnitTestCaseAction 1444297368052 TestCell.java FAIL UnitTestSessionAction 1444297368052 TestCell FAIL EditAction 1444297375456 TestCell.java 491 2 6 2 +RefactoringAction 1444297400538 TestCell.java ADD void init() METHOD +RefactoringAction 1444297419110 TestCell.java ADD Cell cell FIELD +EditAction 1444297419987 TestCell.java 516 3 5 2 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java index c07ab0d..30940bf 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java @@ -6,11 +6,18 @@ import org.unioulu.tol.sqatlab.gameoflife.Cell; public class TestCell { + + public Cell cell; + + @Before + public void init() + { + Cell cell = new Cell("Alive"); + } @Test public void testLiveCellWithNoNeighborDies() { - Cell cell = new Cell("Alive"); cell.update(0); assertEquals("Dead", cell.getState()); } @@ -18,7 +25,6 @@ public void testLiveCellWithNoNeighborDies() @Test public void testLiveCellWithTwoNeighborLives() { - Cell cell = new Cell("Alive"); cell.update(2); assertEquals("Alive", cell.getState()); } From 2856b5dc90d65d8bf141fe43295ad4168bd10632 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:46:56 +0300 Subject: [PATCH 21/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 14 ++++++++++++++ src/org/unioulu/tol/sqatlab/gameoflife/Grid.java | 3 ++- .../tol/sqatlab/gameoflife/test/TestCell.java | 5 +++-- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 188b860..5067215 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -82,3 +82,17 @@ EditAction 1444297375456 TestCell.java 491 2 6 2 RefactoringAction 1444297400538 TestCell.java ADD void init() METHOD RefactoringAction 1444297419110 TestCell.java ADD Cell cell FIELD EditAction 1444297419987 TestCell.java 516 3 5 2 +CompilationAction 1444297420231 TestCell.java +RefactoringAction 1444297423801 TestCell.java ADD import org.junit.Before IMPORT +CompilationAction 1444297424771 TestCell.java +UnitTestCaseAction 1444297442690 TestCell.java FAIL +UnitTestSessionAction 1444297442690 TestCell FAIL +UnitTestCaseAction 1444297462013 TestCell.java FAIL +UnitTestSessionAction 1444297462014 TestCell FAIL +UnitTestCaseAction 1444297513476 TestCell.java OK +UnitTestSessionAction 1444297513477 TestCell OK +FileOpenedAction 1444297568492 SudokuVerifier.java 4647 8 38 0 +RefactoringAction 1444297607761 Grid.java ADD int x FIELD +RefactoringAction 1444297609267 Grid.java RENAME x=>int xValue FIELD +RefactoringAction 1444297615780 Grid.java ADD int yValue FIELD +EditAction 1444297616204 Grid.java 107 0 0 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java index 19dbf0b..3d91cf2 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java @@ -1,5 +1,6 @@ package org.unioulu.tol.sqatlab.gameoflife; public class Grid { - + public int xValue; + public int yValue; } diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java index 30940bf..f3869e9 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java @@ -2,17 +2,18 @@ import static org.junit.Assert.*; +import org.junit.Before; import org.junit.Test; import org.unioulu.tol.sqatlab.gameoflife.Cell; public class TestCell { - public Cell cell; + Cell cell; @Before public void init() { - Cell cell = new Cell("Alive"); + cell = new Cell("Alive"); } @Test From ac94834444458f8c90969af09d5d216d462a214b Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:47:05 +0300 Subject: [PATCH 22/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 1 + src/org/unioulu/tol/sqatlab/gameoflife/GameOfLife.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 5067215..0440a6a 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -96,3 +96,4 @@ RefactoringAction 1444297607761 Grid.java ADD int x FIELD RefactoringAction 1444297609267 Grid.java RENAME x=>int xValue FIELD RefactoringAction 1444297615780 Grid.java ADD int yValue FIELD EditAction 1444297616204 Grid.java 107 0 0 0 +EditAction 1444297625481 GameOfLife.java 75 0 0 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/GameOfLife.java b/src/org/unioulu/tol/sqatlab/gameoflife/GameOfLife.java index dbd5f88..cc4147d 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/GameOfLife.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/GameOfLife.java @@ -1,5 +1,5 @@ package org.unioulu.tol.sqatlab.gameoflife; public class GameOfLife { - + } From a785f8bc80bd1372407959c7cca1e6cc8c8a1a34 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:48:47 +0300 Subject: [PATCH 23/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/Grid.java | 6 ++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 0440a6a..cf41eb9 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -97,3 +97,6 @@ RefactoringAction 1444297609267 Grid.java RENAME x=>int xValue FIELD RefactoringAction 1444297615780 Grid.java ADD int yValue FIELD EditAction 1444297616204 Grid.java 107 0 0 0 EditAction 1444297625481 GameOfLife.java 75 0 0 0 +RefactoringAction 1444297719805 Grid.java RENAME xValue=>int rowAmount FIELD +RefactoringAction 1444297725810 Grid.java RENAME yValue=>int column FIELD +EditAction 1444297727052 Grid.java 120 0 0 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java index 3d91cf2..db4a695 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java @@ -1,6 +1,8 @@ package org.unioulu.tol.sqatlab.gameoflife; public class Grid { - public int xValue; - public int yValue; + + public int rowAmount; + public int columnAmount; + } From e32e1ada1085e594cc52dd7afb00bf030ccc74b8 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:50:52 +0300 Subject: [PATCH 24/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 5 +++++ src/org/unioulu/tol/sqatlab/gameoflife/Grid.java | 15 +++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index cf41eb9..1a24abc 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -100,3 +100,8 @@ EditAction 1444297625481 GameOfLife.java 75 0 0 0 RefactoringAction 1444297719805 Grid.java RENAME xValue=>int rowAmount FIELD RefactoringAction 1444297725810 Grid.java RENAME yValue=>int column FIELD EditAction 1444297727052 Grid.java 120 0 0 0 +RefactoringAction 1444297748833 Grid.java ADD void createGrid() METHOD +FileOpenedAction 1444297825161 GildedRose.java 2811 3 14 0 +RefactoringAction 1444297835486 Grid.java ADD import java.util.List IMPORT +RefactoringAction 1444297851527 Grid.java RENAME items=>List cells FIELD +EditAction 1444297852378 Grid.java 293 1 1 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java index db4a695..af38f12 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java @@ -1,8 +1,23 @@ package org.unioulu.tol.sqatlab.gameoflife; +import java.util.List; + +import fi.oulu.tol.sqat.Item; + public class Grid { public int rowAmount; public int columnAmount; + public List cells = null; + + + public void createGrid() + { + for(int i = 0; i Date: Thu, 8 Oct 2015 12:51:58 +0300 Subject: [PATCH 25/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 7 +++++++ src/org/unioulu/tol/sqatlab/gameoflife/Grid.java | 3 +-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 1a24abc..34ab925 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -105,3 +105,10 @@ FileOpenedAction 1444297825161 GildedRose.java 2811 3 14 0 RefactoringAction 1444297835486 Grid.java ADD import java.util.List IMPORT RefactoringAction 1444297851527 Grid.java RENAME items=>List cells FIELD EditAction 1444297852378 Grid.java 293 1 1 0 +CompilationAction 1444297852584 Grid.java +RefactoringAction 1444297873554 Grid.java REMOVE import fi.oulu.tol.sqat.Item IMPORT +RefactoringAction 1444297904582 Grid.java REMOVE cells FIELD +RefactoringAction 1444297906592 Grid.java ADD Cell cells FIELD +RefactoringAction 1444297907603 Grid.java REMOVE cells FIELD +RefactoringAction 1444297910112 Grid.java ADD List cells FIELD +EditAction 1444297918905 Grid.java 269 1 1 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java index af38f12..00c9639 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java @@ -2,14 +2,13 @@ import java.util.List; -import fi.oulu.tol.sqat.Item; public class Grid { public int rowAmount; public int columnAmount; - public List cells = null; + public List> cells = null; public void createGrid() From 72a3cbc0e6b377b2e39513131c44c86d232da0b1 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:54:05 +0300 Subject: [PATCH 26/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/Grid.java | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 34ab925..7ae49db 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -112,3 +112,6 @@ RefactoringAction 1444297906592 Grid.java ADD Cell cells FIELD RefactoringAction 1444297907603 Grid.java REMOVE cells FIELD RefactoringAction 1444297910112 Grid.java ADD List cells FIELD EditAction 1444297918905 Grid.java 269 1 1 0 +RefactoringAction 1444298034857 Grid.java REMOVE cells FIELD +RefactoringAction 1444298040869 Grid.java ADD List cells FIELD +EditAction 1444298045448 Grid.java 298 1 1 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java index 00c9639..10ff5fb 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java @@ -13,9 +13,9 @@ public class Grid { public void createGrid() { - for(int i = 0; i()); } } From 8d61162ad451149578783949eac6d1ae5d847f7a Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:56:59 +0300 Subject: [PATCH 27/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 9 +++++++++ src/org/unioulu/tol/sqatlab/gameoflife/Grid.java | 7 +++++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 7ae49db..5b69fee 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -115,3 +115,12 @@ EditAction 1444297918905 Grid.java 269 1 1 0 RefactoringAction 1444298034857 Grid.java REMOVE cells FIELD RefactoringAction 1444298040869 Grid.java ADD List cells FIELD EditAction 1444298045448 Grid.java 298 1 1 0 +CompilationAction 1444298045696 Grid.java +RefactoringAction 1444298094421 Grid.java ADD List> cells/2 FIELD +RefactoringAction 1444298098933 Grid.java RENAME cells/2=>List> allCells FIELD +CompilationAction 1444298099713 Grid.java +CompilationAction 1444298099868 Grid.java +CompilationAction 1444298099869 Grid.java +CompilationAction 1444298193391 Grid.java +CompilationAction 1444298193391 Grid.java +EditAction 1444298219078 Grid.java 355 1 2 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java index 10ff5fb..5c64bbf 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java @@ -8,15 +8,18 @@ public class Grid { public int rowAmount; public int columnAmount; - public List> cells = null; + public List cells = null; + public List> allCells = null; public void createGrid() { for(int i = 0; i()); + allCells.add(cells); } + + return allCells.size(); } } From 0903fe208ba95f31bf31f4942d1e61f8320ef51c Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 12:58:36 +0300 Subject: [PATCH 28/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 8 ++++++++ src/org/unioulu/tol/sqatlab/gameoflife/Grid.java | 2 +- .../unioulu/tol/sqatlab/gameoflife/test/TestGrid.java | 11 +++++++++-- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 5b69fee..d230e19 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -124,3 +124,11 @@ CompilationAction 1444298099869 Grid.java CompilationAction 1444298193391 Grid.java CompilationAction 1444298193391 Grid.java EditAction 1444298219078 Grid.java 355 1 2 0 +CompilationAction 1444298219367 Grid.java +CompilationAction 1444298226549 Grid.java +FileOpenedAction 1444298246631 TestGrid.java 199 1 1 0 +RefactoringAction 1444298261644 TestGrid.java RENAME test()=> null +RefactoringAction 1444298266653 TestGrid.java RENAME =>void testCreateGrid() METHOD +RefactoringAction 1444298289848 TestGrid.java ADD import org.unioulu.tol.sqatlab.gameoflife.Grid IMPORT +RefactoringAction 1444298311239 TestGrid.java ADD Grid grid FIELD +EditAction 1444298316119 TestGrid.java 272 1 1 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java index 5c64bbf..34e1e15 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java @@ -12,7 +12,7 @@ public class Grid { public List> allCells = null; - public void createGrid() + public int createGrid() { for(int i = 0; i Date: Thu, 8 Oct 2015 12:59:12 +0300 Subject: [PATCH 29/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 2 ++ src/org/unioulu/tol/sqatlab/gameoflife/Grid.java | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index d230e19..762ff2c 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -132,3 +132,5 @@ RefactoringAction 1444298266653 TestGrid.java RENAME =>void test RefactoringAction 1444298289848 TestGrid.java ADD import org.unioulu.tol.sqatlab.gameoflife.Grid IMPORT RefactoringAction 1444298311239 TestGrid.java ADD Grid grid FIELD EditAction 1444298316119 TestGrid.java 272 1 1 0 +RefactoringAction 1444298348691 Grid.java RENAME createGrid()=>int createGrid(int) METHOD +EditAction 1444298352679 Grid.java 367 1 2 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java index 34e1e15..b05297a 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java @@ -12,7 +12,7 @@ public class Grid { public List> allCells = null; - public int createGrid() + public int createGrid(int rowAmount) { for(int i = 0; i Date: Thu, 8 Oct 2015 12:59:46 +0300 Subject: [PATCH 30/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 1 + src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 762ff2c..1489a0b 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -134,3 +134,4 @@ RefactoringAction 1444298311239 TestGrid.java ADD Grid grid FIELD EditAction 1444298316119 TestGrid.java 272 1 1 0 RefactoringAction 1444298348691 Grid.java RENAME createGrid()=>int createGrid(int) METHOD EditAction 1444298352679 Grid.java 367 1 2 0 +EditAction 1444298386831 TestGrid.java 297 1 2 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java index c544eea..d269e58 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java @@ -14,6 +14,8 @@ public void testCreateGrid() grid = new Grid(); + grid.createGrid(5); + } From 1a37ce56b05d24368e190246b74ec5a5b1a2bbca Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:00:18 +0300 Subject: [PATCH 31/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 1 + src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 1489a0b..1be08ca 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -135,3 +135,4 @@ EditAction 1444298316119 TestGrid.java 272 1 1 0 RefactoringAction 1444298348691 Grid.java RENAME createGrid()=>int createGrid(int) METHOD EditAction 1444298352679 Grid.java 367 1 2 0 EditAction 1444298386831 TestGrid.java 297 1 2 0 +EditAction 1444298418006 TestGrid.java 340 1 3 1 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java index d269e58..08334e9 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java @@ -14,9 +14,11 @@ public void testCreateGrid() grid = new Grid(); - grid.createGrid(5); + int actual = grid.createGrid(5); + + assertEquals(5, actual); } } From 7408fa32538dae5be7df4f87ae742a4df34bef12 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:03:45 +0300 Subject: [PATCH 32/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 1be08ca..7c228f0 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -136,3 +136,10 @@ RefactoringAction 1444298348691 Grid.java RENAME createGrid()=>int createGrid(in EditAction 1444298352679 Grid.java 367 1 2 0 EditAction 1444298386831 TestGrid.java 297 1 2 0 EditAction 1444298418006 TestGrid.java 340 1 3 1 +UnitTestCaseAction 1444298421812 TestCell.java OK +UnitTestSessionAction 1444298421813 TestCell OK +UnitTestCaseAction 1444298437408 TestCell.java OK +UnitTestSessionAction 1444298437408 TestCell OK +RefactoringAction 1444298604285 Grid.java ADD List cells/2 FIELD +RefactoringAction 1444298623859 Grid.java REMOVE cells/2 FIELD +EditAction 1444298625397 Grid.java 367 1 2 0 From 298d4a6b211338238b7270e8a0b76de7259c9f22 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:04:02 +0300 Subject: [PATCH 33/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 1 + src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 7c228f0..12ed103 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -143,3 +143,4 @@ UnitTestSessionAction 1444298437408 TestCell OK RefactoringAction 1444298604285 Grid.java ADD List cells/2 FIELD RefactoringAction 1444298623859 Grid.java REMOVE cells/2 FIELD EditAction 1444298625397 Grid.java 367 1 2 0 +EditAction 1444298642398 TestGrid.java 339 1 3 1 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java index 08334e9..61d010a 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java @@ -15,10 +15,10 @@ public void testCreateGrid() grid = new Grid(); int actual = grid.createGrid(5); + + assertEquals(4, actual); - - assertEquals(5, actual); } } From 86fee98a991cac3b90551d04fa19d64e59367819 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:04:20 +0300 Subject: [PATCH 34/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 12ed103..7ee2dd5 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -144,3 +144,6 @@ RefactoringAction 1444298604285 Grid.java ADD List cells/2 FIELD RefactoringAction 1444298623859 Grid.java REMOVE cells/2 FIELD EditAction 1444298625397 Grid.java 367 1 2 0 EditAction 1444298642398 TestGrid.java 339 1 3 1 +UnitTestCaseAction 1444298643902 TestGrid.java FAIL +UnitTestSessionAction 1444298643904 TestGrid FAIL +EditAction 1444298660404 TestGrid.java 339 1 3 1 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java index 61d010a..855bb5c 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java @@ -16,7 +16,7 @@ public void testCreateGrid() int actual = grid.createGrid(5); - assertEquals(4, actual); + assertEquals(6, actual); } From cd5795d1cad16420fdd31c24373deb97d2463916 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:04:50 +0300 Subject: [PATCH 35/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 7ee2dd5..f6667e9 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -147,3 +147,6 @@ EditAction 1444298642398 TestGrid.java 339 1 3 1 UnitTestCaseAction 1444298643902 TestGrid.java FAIL UnitTestSessionAction 1444298643904 TestGrid FAIL EditAction 1444298660404 TestGrid.java 339 1 3 1 +UnitTestCaseAction 1444298662433 TestGrid.java FAIL +UnitTestSessionAction 1444298662433 TestGrid FAIL +EditAction 1444298690019 TestGrid.java 339 1 3 1 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java index 855bb5c..033f5e7 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java @@ -16,7 +16,7 @@ public void testCreateGrid() int actual = grid.createGrid(5); - assertEquals(6, actual); + assertEquals(5, actual); } From 7b7bed216093e8e1bcda14a9c3869d2c6c9cf664 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:06:02 +0300 Subject: [PATCH 36/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 5 +++++ src/org/unioulu/tol/sqatlab/gameoflife/Grid.java | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index f6667e9..552995e 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -150,3 +150,8 @@ EditAction 1444298660404 TestGrid.java 339 1 3 1 UnitTestCaseAction 1444298662433 TestGrid.java FAIL UnitTestSessionAction 1444298662433 TestGrid FAIL EditAction 1444298690019 TestGrid.java 339 1 3 1 +UnitTestCaseAction 1444298692669 TestGrid.java FAIL +UnitTestSessionAction 1444298692669 TestGrid FAIL +RefactoringAction 1444298734439 Grid.java REMOVE cells FIELD +RefactoringAction 1444298752483 Grid.java ADD Cell FIELD +EditAction 1444298762147 Grid.java 416 1 2 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java index b05297a..e438d58 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java @@ -8,7 +8,8 @@ public class Grid { public int rowAmount; public int columnAmount; - public List cells = null; + public Cell[] cells = new Cell[columnAmount]; + //public List cells = null; public List> allCells = null; From bb14dcf6d2ace33bf698046c4da709b6f729655d Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:08:59 +0300 Subject: [PATCH 37/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 16 ++++++++++++++++ src/org/unioulu/tol/sqatlab/gameoflife/Grid.java | 10 ++++++---- 2 files changed, 22 insertions(+), 4 deletions(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 552995e..a3b697c 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -155,3 +155,19 @@ UnitTestSessionAction 1444298692669 TestGrid FAIL RefactoringAction 1444298734439 Grid.java REMOVE cells FIELD RefactoringAction 1444298752483 Grid.java ADD Cell FIELD EditAction 1444298762147 Grid.java 416 1 2 0 +CompilationAction 1444298762440 Grid.java +RefactoringAction 1444298824554 Grid.java ADD ArrayList elements FIELD +RefactoringAction 1444298827566 Grid.java REMOVE cells FIELD +RefactoringAction 1444298829489 Grid.java ADD import java.util.ArrayList IMPORT +RefactoringAction 1444298840606 Grid.java REMOVE elements FIELD +RefactoringAction 1444298844118 Grid.java ADD List> allCells/2 FIELD +RefactoringAction 1444298847131 Grid.java REMOVE allCells/2 FIELD +CompilationAction 1444298849074 Grid.java +CompilationAction 1444298849240 Grid.java +RefactoringAction 1444298901358 Grid.java ADD List cells FIELD +CompilationAction 1444298902281 Grid.java +RefactoringAction 1444298911380 Grid.java RENAME cells=>List cell FIELD +RefactoringAction 1444298912891 Grid.java RENAME cell=>List cellArray FIELD +RefactoringAction 1444298934424 Grid.java REMOVE allCells FIELD +RefactoringAction 1444298938935 Grid.java ADD List cells = null; - public List> allCells = null; + + + public List cellArray = null; + public List allCells = null; public int createGrid(int rowAmount) { for(int i = 0; i Date: Thu, 8 Oct 2015 13:10:02 +0300 Subject: [PATCH 38/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 8 ++++++++ src/org/unioulu/tol/sqatlab/gameoflife/Grid.java | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index a3b697c..f985581 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -171,3 +171,11 @@ RefactoringAction 1444298912891 Grid.java RENAME cell=>List cellArray FIEL RefactoringAction 1444298934424 Grid.java REMOVE allCells FIELD RefactoringAction 1444298938935 Grid.java ADD Listint createGrid(int, int) METHOD +CompilationAction 1444298977297 Grid.java +CompilationAction 1444298977509 TestGrid.java +RefactoringAction 1444298999091 Grid.java RENAME createGrid(int, int)=>int createGrid(int) METHOD +EditAction 1444299002264 Grid.java 417 1 2 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java index a87e95c..914198a 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java @@ -11,7 +11,7 @@ public class Grid { - public List cellArray = null; + public Cell[] cellArray = new Cell[columnAmount]; public List allCells = null; From e302961577e2f7b18e7d73ef95903f26dcfb793a Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:11:18 +0300 Subject: [PATCH 39/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/Grid.java | 1 + 2 files changed, 4 insertions(+) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index f985581..f857d33 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -179,3 +179,6 @@ CompilationAction 1444298977297 Grid.java CompilationAction 1444298977509 TestGrid.java RefactoringAction 1444298999091 Grid.java RENAME createGrid(int, int)=>int createGrid(int) METHOD EditAction 1444299002264 Grid.java 417 1 2 0 +UnitTestCaseAction 1444299009698 TestGrid.java FAIL +UnitTestSessionAction 1444299009698 TestGrid FAIL +EditAction 1444299078363 Grid.java 448 1 0 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java index 914198a..7f97148 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java @@ -19,6 +19,7 @@ public int createGrid(int rowAmount) { for(int i = 0; i Date: Thu, 8 Oct 2015 13:13:11 +0300 Subject: [PATCH 40/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 14 ++++++++++++++ src/org/unioulu/tol/sqatlab/gameoflife/Grid.java | 8 +++++++- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index f857d33..a8c8c0b 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -182,3 +182,17 @@ EditAction 1444299002264 Grid.java 417 1 2 0 UnitTestCaseAction 1444299009698 TestGrid.java FAIL UnitTestSessionAction 1444299009698 TestGrid FAIL EditAction 1444299078363 Grid.java 448 1 0 0 +CompilationAction 1444299078633 Grid.java +CompilationAction 1444299078633 Grid.java +CompilationAction 1444299078634 Grid.java +CompilationAction 1444299079896 Grid.java +CompilationAction 1444299079896 Grid.java +CompilationAction 1444299079897 Grid.java +UnitTestCaseAction 1444299081967 TestGrid.java FAIL +UnitTestSessionAction 1444299081967 TestGrid FAIL +RefactoringAction 1444299142955 Grid.java ADD void Cell(String) METHOD +RefactoringAction 1444299146967 Grid.java RENAME Cell(String)=>void C(String) METHOD +RefactoringAction 1444299148981 Grid.java RENAME C(String)=>Grid(String) METHOD +RefactoringAction 1444299152495 Grid.java RENAME Grid(String)=>Grid(int) METHOD +RefactoringAction 1444299161509 Grid.java RENAME Grid(int)=>Grid(int, int) METHOD +EditAction 1444299191210 Grid.java 568 2 4 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java index 7f97148..3d06d2c 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java @@ -14,12 +14,18 @@ public class Grid { public Cell[] cellArray = new Cell[columnAmount]; public List allCells = null; + public Grid(int rowAmount, int columnAmount) + { + this.rowAmount = rowAmount; + this.columnAmount = columnAmount; + } + public int createGrid(int rowAmount) { for(int i = 0; i Date: Thu, 8 Oct 2015 13:13:12 +0300 Subject: [PATCH 41/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 2 ++ src/org/unioulu/tol/sqatlab/gameoflife/Grid.java | 1 + 2 files changed, 3 insertions(+) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index a8c8c0b..19d1398 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -196,3 +196,5 @@ RefactoringAction 1444299148981 Grid.java RENAME C(String)=>Grid(String) METHOD RefactoringAction 1444299152495 Grid.java RENAME Grid(String)=>Grid(int) METHOD RefactoringAction 1444299161509 Grid.java RENAME Grid(int)=>Grid(int, int) METHOD EditAction 1444299191210 Grid.java 568 2 4 0 +CompilationAction 1444299191469 TestGrid.java +EditAction 1444299192418 Grid.java 570 2 4 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java index 3d06d2c..af25883 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java @@ -14,6 +14,7 @@ public class Grid { public Cell[] cellArray = new Cell[columnAmount]; public List allCells = null; + public Grid(int rowAmount, int columnAmount) { this.rowAmount = rowAmount; From 3c9828e9e5882d06ccf9835ea6239d26c29badde Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:13:57 +0300 Subject: [PATCH 42/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 4 ++++ src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 19d1398..836de49 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -198,3 +198,7 @@ RefactoringAction 1444299161509 Grid.java RENAME Grid(int)=>Grid(int, int) METHO EditAction 1444299191210 Grid.java 568 2 4 0 CompilationAction 1444299191469 TestGrid.java EditAction 1444299192418 Grid.java 570 2 4 0 +CompilationAction 1444299197818 TestGrid.java +UnitTestCaseAction 1444299200742 TestGrid.java FAIL +UnitTestSessionAction 1444299200742 TestGrid FAIL +EditAction 1444299237934 Grid.java 570 2 4 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java index 033f5e7..73874b9 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java @@ -12,7 +12,7 @@ public class TestGrid { public void testCreateGrid() { - grid = new Grid(); + grid = new Grid(5, 5); int actual = grid.createGrid(5); From 793720ad74e2473676ebe23495838fc7c9f08c14 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:14:19 +0300 Subject: [PATCH 43/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 1 + src/org/unioulu/tol/sqatlab/gameoflife/Grid.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 836de49..bf11302 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -202,3 +202,4 @@ CompilationAction 1444299197818 TestGrid.java UnitTestCaseAction 1444299200742 TestGrid.java FAIL UnitTestSessionAction 1444299200742 TestGrid FAIL EditAction 1444299237934 Grid.java 570 2 4 0 +EditAction 1444299259417 Grid.java 557 2 4 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java index af25883..e94a108 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java @@ -22,7 +22,7 @@ public Grid(int rowAmount, int columnAmount) } - public int createGrid(int rowAmount) + public int createGrid() { for(int i = 0; i Date: Thu, 8 Oct 2015 13:14:22 +0300 Subject: [PATCH 44/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 2 ++ src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index bf11302..201c547 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -203,3 +203,5 @@ UnitTestCaseAction 1444299200742 TestGrid.java FAIL UnitTestSessionAction 1444299200742 TestGrid FAIL EditAction 1444299237934 Grid.java 570 2 4 0 EditAction 1444299259417 Grid.java 557 2 4 0 +CompilationAction 1444299259668 TestGrid.java +EditAction 1444299262936 TestGrid.java 342 1 3 1 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java index 73874b9..a0afc16 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java @@ -14,7 +14,7 @@ public void testCreateGrid() grid = new Grid(5, 5); - int actual = grid.createGrid(5); + int actual = grid.createGrid(); assertEquals(5, actual); From c5edc8ba4bb32e4e2b83511c4f6c2daf7b078e53 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:15:19 +0300 Subject: [PATCH 45/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/Grid.java | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 201c547..5ba3d02 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -205,3 +205,6 @@ EditAction 1444299237934 Grid.java 570 2 4 0 EditAction 1444299259417 Grid.java 557 2 4 0 CompilationAction 1444299259668 TestGrid.java EditAction 1444299262936 TestGrid.java 342 1 3 1 +UnitTestCaseAction 1444299265385 TestGrid.java FAIL +UnitTestSessionAction 1444299265385 TestGrid FAIL +EditAction 1444299319463 Grid.java 567 2 5 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java index e94a108..6b18afe 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java @@ -9,9 +9,7 @@ public class Grid { public int rowAmount; public int columnAmount; - - - public Cell[] cellArray = new Cell[columnAmount]; + public Cell[] cellArray; public List allCells = null; @@ -19,6 +17,8 @@ public Grid(int rowAmount, int columnAmount) { this.rowAmount = rowAmount; this.columnAmount = columnAmount; + cellArray = new Cell[columnAmount]; + } From b725fb36fd383d82725fdc5d24bb622681a101df Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:18:21 +0300 Subject: [PATCH 46/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/Grid.java | 1 + 2 files changed, 4 insertions(+) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 5ba3d02..fb21d16 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -208,3 +208,6 @@ EditAction 1444299262936 TestGrid.java 342 1 3 1 UnitTestCaseAction 1444299265385 TestGrid.java FAIL UnitTestSessionAction 1444299265385 TestGrid FAIL EditAction 1444299319463 Grid.java 567 2 5 0 +UnitTestCaseAction 1444299323597 TestGrid.java FAIL +UnitTestSessionAction 1444299323597 TestGrid FAIL +EditAction 1444299501735 Grid.java 606 2 5 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java index 6b18afe..13747f4 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java @@ -27,6 +27,7 @@ public int createGrid() for(int i = 0; i Date: Thu, 8 Oct 2015 13:18:40 +0300 Subject: [PATCH 47/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 4 ++++ src/org/unioulu/tol/sqatlab/gameoflife/Grid.java | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index fb21d16..1a46270 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -211,3 +211,7 @@ EditAction 1444299319463 Grid.java 567 2 5 0 UnitTestCaseAction 1444299323597 TestGrid.java FAIL UnitTestSessionAction 1444299323597 TestGrid FAIL EditAction 1444299501735 Grid.java 606 2 5 0 +UnitTestCaseAction 1444299504855 TestGrid.java FAIL +UnitTestSessionAction 1444299504855 TestGrid FAIL +RefactoringAction 1444299519208 Grid.java RENAME createGrid()=>int createGrid(int, int) METHOD +EditAction 1444299520924 Grid.java 637 2 5 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java index 13747f4..72d55e8 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java @@ -22,7 +22,7 @@ public Grid(int rowAmount, int columnAmount) } - public int createGrid() + public int createGrid(int rowAmount, int columnAmount) { for(int i = 0; i Date: Thu, 8 Oct 2015 13:18:48 +0300 Subject: [PATCH 48/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/Grid.java | 14 +++++++------- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 1a46270..815a191 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -215,3 +215,6 @@ UnitTestCaseAction 1444299504855 TestGrid.java FAIL UnitTestSessionAction 1444299504855 TestGrid FAIL RefactoringAction 1444299519208 Grid.java RENAME createGrid()=>int createGrid(int, int) METHOD EditAction 1444299520924 Grid.java 637 2 5 0 +CompilationAction 1444299521182 TestGrid.java +RefactoringAction 1444299526744 Grid.java REMOVE Grid(int, int) METHOD +EditAction 1444299528804 Grid.java 651 1 2 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java index 72d55e8..65c9eb9 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java @@ -13,13 +13,13 @@ public class Grid { public List allCells = null; - public Grid(int rowAmount, int columnAmount) - { - this.rowAmount = rowAmount; - this.columnAmount = columnAmount; - cellArray = new Cell[columnAmount]; - - } +// public Grid(int rowAmount, int columnAmount) +// { +// this.rowAmount = rowAmount; +// this.columnAmount = columnAmount; +// cellArray = new Cell[columnAmount]; +// +// } public int createGrid(int rowAmount, int columnAmount) From 7cba0f6155c1881f7096cfa695e31c1a096ac5c9 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:19:58 +0300 Subject: [PATCH 49/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 7 +++++++ src/org/unioulu/tol/sqatlab/gameoflife/Grid.java | 4 ++-- src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java | 4 ++-- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 815a191..8cdd543 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -218,3 +218,10 @@ EditAction 1444299520924 Grid.java 637 2 5 0 CompilationAction 1444299521182 TestGrid.java RefactoringAction 1444299526744 Grid.java REMOVE Grid(int, int) METHOD EditAction 1444299528804 Grid.java 651 1 2 0 +CompilationAction 1444299529060 TestGrid.java +CompilationAction 1444299529061 TestGrid.java +CompilationAction 1444299538980 TestGrid.java +CompilationAction 1444299538981 TestGrid.java +UnitTestCaseAction 1444299540550 TestGrid.java FAIL +UnitTestSessionAction 1444299540551 TestGrid FAIL +EditAction 1444299598662 Grid.java 665 1 2 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java index 65c9eb9..08ad1a3 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java @@ -22,7 +22,7 @@ public class Grid { // } - public int createGrid(int rowAmount, int columnAmount) + public void createGrid(int rowAmount, int columnAmount) { for(int i = 0; i Date: Thu, 8 Oct 2015 13:21:09 +0300 Subject: [PATCH 50/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 5 +++++ src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java | 6 ++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 8cdd543..ffd26ff 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -225,3 +225,8 @@ CompilationAction 1444299538981 TestGrid.java UnitTestCaseAction 1444299540550 TestGrid.java FAIL UnitTestSessionAction 1444299540551 TestGrid FAIL EditAction 1444299598662 Grid.java 665 1 2 0 +CompilationAction 1444299598925 TestGrid.java +CompilationAction 1444299661636 TestGrid.java +UnitTestCaseAction 1444299663902 TestGrid.java FAIL +UnitTestSessionAction 1444299663902 TestGrid FAIL +EditAction 1444299669315 TestGrid.java 367 1 3 1 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java index 7dd3e49..f04c603 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java @@ -14,9 +14,11 @@ public void testCreateGrid() grid = new Grid(); - int actual = grid.createGrid(5, 5); + //int actual = grid.createGrid(5, 5); - assertEquals(5, actual); + grid.createGrid(1, 5); + + assertEquals(5, 5); } From d7e923176397d0156fe9188d1b113faf9ba4785c Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:21:15 +0300 Subject: [PATCH 51/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index ffd26ff..004b57d 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -230,3 +230,6 @@ CompilationAction 1444299661636 TestGrid.java UnitTestCaseAction 1444299663902 TestGrid.java FAIL UnitTestSessionAction 1444299663902 TestGrid FAIL EditAction 1444299669315 TestGrid.java 367 1 3 1 +UnitTestCaseAction 1444299671014 TestGrid.java FAIL +UnitTestSessionAction 1444299671014 TestGrid FAIL +EditAction 1444299675166 TestGrid.java 367 1 3 1 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java index f04c603..79f7515 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java @@ -16,7 +16,7 @@ public void testCreateGrid() //int actual = grid.createGrid(5, 5); - grid.createGrid(1, 5); + grid.createGrid(1, 1); assertEquals(5, 5); From 37430f3a7eedb1c080454ccbe2a6c21d5ab6bcec Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:22:17 +0300 Subject: [PATCH 52/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 5 +++++ src/org/unioulu/tol/sqatlab/gameoflife/Grid.java | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 004b57d..5a8f383 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -233,3 +233,8 @@ EditAction 1444299669315 TestGrid.java 367 1 3 1 UnitTestCaseAction 1444299671014 TestGrid.java FAIL UnitTestSessionAction 1444299671014 TestGrid FAIL EditAction 1444299675166 TestGrid.java 367 1 3 1 +UnitTestCaseAction 1444299677138 TestGrid.java FAIL +UnitTestSessionAction 1444299677138 TestGrid FAIL +RefactoringAction 1444299722595 Grid.java REMOVE allCells FIELD +RefactoringAction 1444299735625 Grid.java ADD ArrayList allCells FIELD +EditAction 1444299737508 Grid.java 713 1 2 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java index 08ad1a3..d2bac38 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java @@ -10,7 +10,8 @@ public class Grid { public int columnAmount; public Cell[] cellArray; - public List allCells = null; + public ArrayList allCells = new ArrayList(); + //public List allCells = null; // public Grid(int rowAmount, int columnAmount) From 40ca66d0e4b3d1934eef345ad7c02b997871fec5 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:23:30 +0300 Subject: [PATCH 53/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/Grid.java | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 5a8f383..7cc2e0e 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -238,3 +238,6 @@ UnitTestSessionAction 1444299677138 TestGrid FAIL RefactoringAction 1444299722595 Grid.java REMOVE allCells FIELD RefactoringAction 1444299735625 Grid.java ADD ArrayList allCells FIELD EditAction 1444299737508 Grid.java 713 1 2 0 +UnitTestCaseAction 1444299769584 TestGrid.java OK +UnitTestSessionAction 1444299769584 TestGrid OK +EditAction 1444299810395 Grid.java 715 1 2 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java index d2bac38..3750f99 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java @@ -10,7 +10,7 @@ public class Grid { public int columnAmount; public Cell[] cellArray; - public ArrayList allCells = new ArrayList(); + public ArrayList allCells = new ArrayList(); //public List allCells = null; @@ -23,7 +23,7 @@ public class Grid { // } - public void createGrid(int rowAmount, int columnAmount) + public int createGrid(int rowAmount, int columnAmount) { for(int i = 0; i Date: Thu, 8 Oct 2015 13:23:36 +0300 Subject: [PATCH 54/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 1 + src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java | 7 +++---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 7cc2e0e..a8d5b7c 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -241,3 +241,4 @@ EditAction 1444299737508 Grid.java 713 1 2 0 UnitTestCaseAction 1444299769584 TestGrid.java OK UnitTestSessionAction 1444299769584 TestGrid OK EditAction 1444299810395 Grid.java 715 1 2 0 +EditAction 1444299816508 TestGrid.java 343 1 3 1 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java index 79f7515..d01d98e 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java @@ -14,11 +14,10 @@ public void testCreateGrid() grid = new Grid(); - //int actual = grid.createGrid(5, 5); + int actual = grid.createGrid(5, 5); - grid.createGrid(1, 1); - - assertEquals(5, 5); + + assertEquals(5, actual); } From 960a2524a33c540fe0ee6dc84b3fcd4898ae4256 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:23:44 +0300 Subject: [PATCH 55/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/Grid.java | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index a8d5b7c..d419a81 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -242,3 +242,6 @@ UnitTestCaseAction 1444299769584 TestGrid.java OK UnitTestSessionAction 1444299769584 TestGrid OK EditAction 1444299810395 Grid.java 715 1 2 0 EditAction 1444299816508 TestGrid.java 343 1 3 1 +UnitTestCaseAction 1444299819025 TestGrid.java OK +UnitTestSessionAction 1444299819026 TestGrid OK +EditAction 1444299824597 Grid.java 685 1 2 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java index 3750f99..0506687 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java @@ -27,7 +27,6 @@ public int createGrid(int rowAmount, int columnAmount) { for(int i = 0; i Date: Thu, 8 Oct 2015 13:24:03 +0300 Subject: [PATCH 56/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index d419a81..aea6c59 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -245,3 +245,6 @@ EditAction 1444299816508 TestGrid.java 343 1 3 1 UnitTestCaseAction 1444299819025 TestGrid.java OK UnitTestSessionAction 1444299819026 TestGrid OK EditAction 1444299824597 Grid.java 685 1 2 0 +UnitTestCaseAction 1444299830033 TestGrid.java OK +UnitTestSessionAction 1444299830033 TestGrid OK +EditAction 1444299843316 TestGrid.java 343 1 3 1 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java index d01d98e..2d4b1b0 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java @@ -17,7 +17,7 @@ public void testCreateGrid() int actual = grid.createGrid(5, 5); - assertEquals(5, actual); + assertEquals(4, actual); } From c9aaabbc772a89d036c20d0ef6de0c9d026b9ae6 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:24:11 +0300 Subject: [PATCH 57/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index aea6c59..6044e00 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -248,3 +248,6 @@ EditAction 1444299824597 Grid.java 685 1 2 0 UnitTestCaseAction 1444299830033 TestGrid.java OK UnitTestSessionAction 1444299830033 TestGrid OK EditAction 1444299843316 TestGrid.java 343 1 3 1 +UnitTestCaseAction 1444299845494 TestGrid.java FAIL +UnitTestSessionAction 1444299845495 TestGrid FAIL +EditAction 1444299851138 TestGrid.java 343 1 3 1 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java index 2d4b1b0..d01d98e 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java @@ -17,7 +17,7 @@ public void testCreateGrid() int actual = grid.createGrid(5, 5); - assertEquals(4, actual); + assertEquals(5, actual); } From a72725c4ea273cbc5fb45adcf479a61755cc9266 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:25:23 +0300 Subject: [PATCH 58/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 6 ++++++ src/org/unioulu/tol/sqatlab/gameoflife/GameOfLife.java | 2 ++ 2 files changed, 8 insertions(+) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 6044e00..23bf865 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -251,3 +251,9 @@ EditAction 1444299843316 TestGrid.java 343 1 3 1 UnitTestCaseAction 1444299845494 TestGrid.java FAIL UnitTestSessionAction 1444299845495 TestGrid FAIL EditAction 1444299851138 TestGrid.java 343 1 3 1 +UnitTestCaseAction 1444299852913 TestGrid.java OK +UnitTestSessionAction 1444299852914 TestGrid OK +RefactoringAction 1444299870772 GameOfLife.java ADD Grid grid FIELD +RefactoringAction 1444299919310 GameOfLife.java RENAME grid=>Grid grid() METHOD +RefactoringAction 1444299922317 GameOfLife.java RENAME grid()=>Grid grid FIELD +EditAction 1444299923386 GameOfLife.java 96 0 0 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/GameOfLife.java b/src/org/unioulu/tol/sqatlab/gameoflife/GameOfLife.java index cc4147d..78ced25 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/GameOfLife.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/GameOfLife.java @@ -2,4 +2,6 @@ public class GameOfLife { + public Grid grid; + } From 560cb78e2f06f891ebcc2a433a45bf22672393f9 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:27:01 +0300 Subject: [PATCH 59/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 5 +++++ .../tol/sqatlab/gameoflife/GameOfLife.java | 5 +++++ src/org/unioulu/tol/sqatlab/gameoflife/Grid.java | 16 +--------------- 3 files changed, 11 insertions(+), 15 deletions(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 23bf865..5a33ac0 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -257,3 +257,8 @@ RefactoringAction 1444299870772 GameOfLife.java ADD Grid grid FIELD RefactoringAction 1444299919310 GameOfLife.java RENAME grid=>Grid grid() METHOD RefactoringAction 1444299922317 GameOfLife.java RENAME grid()=>Grid grid FIELD EditAction 1444299923386 GameOfLife.java 96 0 0 0 +RefactoringAction 1444299940385 Grid.java REMOVE import java.util.List IMPORT +RefactoringAction 1444299941896 Grid.java REMOVE rowAmount FIELD +RefactoringAction 1444299941897 Grid.java REMOVE columnAmount FIELD +RefactoringAction 1444299999345 GameOfLife.java ADD static void main(String METHOD +EditAction 1444300021833 GameOfLife.java 166 1 1 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/GameOfLife.java b/src/org/unioulu/tol/sqatlab/gameoflife/GameOfLife.java index 78ced25..0e3fa96 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/GameOfLife.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/GameOfLife.java @@ -4,4 +4,9 @@ public class GameOfLife { public Grid grid; + public static void main(String [] args) + { + grid = new Grid(); + } + } diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java index 0506687..2b2bd57 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java @@ -1,28 +1,14 @@ package org.unioulu.tol.sqatlab.gameoflife; import java.util.ArrayList; -import java.util.List; public class Grid { - public int rowAmount; - public int columnAmount; - public Cell[] cellArray; public ArrayList allCells = new ArrayList(); - //public List allCells = null; - - -// public Grid(int rowAmount, int columnAmount) -// { -// this.rowAmount = rowAmount; -// this.columnAmount = columnAmount; -// cellArray = new Cell[columnAmount]; -// -// } - + public int createGrid(int rowAmount, int columnAmount) { for(int i = 0; i Date: Thu, 8 Oct 2015 13:27:37 +0300 Subject: [PATCH 60/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/GameOfLife.java | 3 ++- src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java | 5 +---- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 5a33ac0..7a14c84 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -262,3 +262,6 @@ RefactoringAction 1444299941896 Grid.java REMOVE rowAmount FIELD RefactoringAction 1444299941897 Grid.java REMOVE columnAmount FIELD RefactoringAction 1444299999345 GameOfLife.java ADD static void main(String METHOD EditAction 1444300021833 GameOfLife.java 166 1 1 0 +CompilationAction 1444300022054 GameOfLife.java +CompilationAction 1444300054401 GameOfLife.java +EditAction 1444300057745 TestGrid.java 333 1 3 1 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/GameOfLife.java b/src/org/unioulu/tol/sqatlab/gameoflife/GameOfLife.java index 0e3fa96..f893d1f 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/GameOfLife.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/GameOfLife.java @@ -2,11 +2,12 @@ public class GameOfLife { - public Grid grid; + public static Grid grid; public static void main(String [] args) { grid = new Grid(); + grid.createGrid(5, 5); } } diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java index d01d98e..619d876 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java @@ -11,15 +11,12 @@ public class TestGrid { @Test public void testCreateGrid() { - grid = new Grid(); int actual = grid.createGrid(5, 5); - assertEquals(5, actual); - - + } } From 880965f8b34b244833c0afe39876d8cdbb34c3c6 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:28:55 +0300 Subject: [PATCH 61/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 2 ++ src/org/unioulu/tol/sqatlab/gameoflife/Grid.java | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 7a14c84..03153aa 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -265,3 +265,5 @@ EditAction 1444300021833 GameOfLife.java 166 1 1 0 CompilationAction 1444300022054 GameOfLife.java CompilationAction 1444300054401 GameOfLife.java EditAction 1444300057745 TestGrid.java 333 1 3 1 +RefactoringAction 1444300105958 Grid.java RENAME createGrid(int, int)=>int createGrid(int) METHOD +EditAction 1444300135571 Grid.java 391 1 2 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java index 2b2bd57..7817e35 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Grid.java @@ -9,11 +9,11 @@ public class Grid { public ArrayList allCells = new ArrayList(); - public int createGrid(int rowAmount, int columnAmount) + public int createGrid(int rowColumnAmount) { - for(int i = 0; i Date: Thu, 8 Oct 2015 13:28:59 +0300 Subject: [PATCH 62/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 03153aa..a6bb89f 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -267,3 +267,6 @@ CompilationAction 1444300054401 GameOfLife.java EditAction 1444300057745 TestGrid.java 333 1 3 1 RefactoringAction 1444300105958 Grid.java RENAME createGrid(int, int)=>int createGrid(int) METHOD EditAction 1444300135571 Grid.java 391 1 2 0 +CompilationAction 1444300135820 GameOfLife.java +CompilationAction 1444300135820 TestGrid.java +EditAction 1444300139778 TestGrid.java 330 1 3 1 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java index 619d876..4eebe99 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java @@ -13,7 +13,7 @@ public void testCreateGrid() { grid = new Grid(); - int actual = grid.createGrid(5, 5); + int actual = grid.createGrid(5); assertEquals(5, actual); From 2ae53b77d004b731d88ed40f9a5c4586f508ae39 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:29:08 +0300 Subject: [PATCH 63/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 1 + src/org/unioulu/tol/sqatlab/gameoflife/GameOfLife.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index a6bb89f..ec5e707 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -270,3 +270,4 @@ EditAction 1444300135571 Grid.java 391 1 2 0 CompilationAction 1444300135820 GameOfLife.java CompilationAction 1444300135820 TestGrid.java EditAction 1444300139778 TestGrid.java 330 1 3 1 +EditAction 1444300148576 GameOfLife.java 195 1 2 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/GameOfLife.java b/src/org/unioulu/tol/sqatlab/gameoflife/GameOfLife.java index f893d1f..b1983c1 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/GameOfLife.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/GameOfLife.java @@ -7,7 +7,7 @@ public class GameOfLife { public static void main(String [] args) { grid = new Grid(); - grid.createGrid(5, 5); + grid.createGrid(5); } } From bec17e431d096f20e78268123f37f3e838cbf0c7 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:30:38 +0300 Subject: [PATCH 64/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 8 ++++++++ .../tol/sqatlab/gameoflife/test/TestGrid.java | 17 +++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index ec5e707..f91256e 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -271,3 +271,11 @@ CompilationAction 1444300135820 GameOfLife.java CompilationAction 1444300135820 TestGrid.java EditAction 1444300139778 TestGrid.java 330 1 3 1 EditAction 1444300148576 GameOfLife.java 195 1 2 0 +UnitTestCaseAction 1444300156411 TestGrid.java OK +UnitTestSessionAction 1444300156411 TestGrid OK +RefactoringAction 1444300186310 TestGrid.java ADD void test FIELD +RefactoringAction 1444300191822 TestGrid.java RENAME test=>void testGetStatusOfCell FIELD +RefactoringAction 1444300192834 TestGrid.java RENAME testGetStatusOfCell=>void testGetStatusOfCell() METHOD +RefactoringAction 1444300208022 TestGrid.java ADD import org.junit.Before IMPORT +RefactoringAction 1444300224890 TestGrid.java ADD import org.unioulu.tol.sqatlab.gameoflife.Cell IMPORT +EditAction 1444300238559 TestGrid.java 519 3 4 1 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java index 4eebe99..712275a 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java @@ -1,12 +1,23 @@ package org.unioulu.tol.sqatlab.gameoflife.test; import static org.junit.Assert.*; + +import org.junit.Before; import org.junit.Test; +import org.unioulu.tol.sqatlab.gameoflife.Cell; import org.unioulu.tol.sqatlab.gameoflife.Grid; public class TestGrid { Grid grid; + + + @Before + public void init() + { + grid = new Grid(); + } + @Test public void testCreateGrid() @@ -18,5 +29,11 @@ public void testCreateGrid() assertEquals(5, actual); } + + @Test + public void testGetStatusOfCell() + { + + } } From 00f69221a7e16f5d7cd4eeacea90bd4cd474ed57 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:30:42 +0300 Subject: [PATCH 65/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 1 + src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index f91256e..c891a1c 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -279,3 +279,4 @@ RefactoringAction 1444300192834 TestGrid.java RENAME testGetStatusOfCell=>void t RefactoringAction 1444300208022 TestGrid.java ADD import org.junit.Before IMPORT RefactoringAction 1444300224890 TestGrid.java ADD import org.unioulu.tol.sqatlab.gameoflife.Cell IMPORT EditAction 1444300238559 TestGrid.java 519 3 4 1 +EditAction 1444300242726 TestGrid.java 498 3 3 1 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java index 712275a..a217b04 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java @@ -22,7 +22,6 @@ public void init() @Test public void testCreateGrid() { - grid = new Grid(); int actual = grid.createGrid(5); From 04d8477617165341fabc00373e26d576373bd617 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:32:30 +0300 Subject: [PATCH 66/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 4 ++++ src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index c891a1c..0ba4444 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -280,3 +280,7 @@ RefactoringAction 1444300208022 TestGrid.java ADD import org.junit.Before IMPORT RefactoringAction 1444300224890 TestGrid.java ADD import org.unioulu.tol.sqatlab.gameoflife.Cell IMPORT EditAction 1444300238559 TestGrid.java 519 3 4 1 EditAction 1444300242726 TestGrid.java 498 3 3 1 +RefactoringAction 1444300267540 TestGrid.java RENAME testGetStatusOfCell()=>void testGetStatusOfCell(int) METHOD +RefactoringAction 1444300287054 TestGrid.java RENAME testGetStatusOfCell(int)=>void testGetStatusOfCell(Cell) METHOD +RefactoringAction 1444300303616 TestGrid.java RENAME testGetStatusOfCell(Cell)=>void testGetStatusOfCell(int) METHOD +EditAction 1444300350737 TestGrid.java 559 3 5 1 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java index a217b04..4f4fd42 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java @@ -30,9 +30,11 @@ public void testCreateGrid() } @Test - public void testGetStatusOfCell() + public void testGetStatusOfCell(int i) { + grid.createGrid(5); + grid.allCells[i][i].getState(); } } From 5f0595fac1b9965fdf3dc730fc1a2b915e872f6a Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:34:32 +0300 Subject: [PATCH 67/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/Cell.java | 2 +- src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 0ba4444..be76f26 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -284,3 +284,6 @@ RefactoringAction 1444300267540 TestGrid.java RENAME testGetStatusOfCell()=>void RefactoringAction 1444300287054 TestGrid.java RENAME testGetStatusOfCell(int)=>void testGetStatusOfCell(Cell) METHOD RefactoringAction 1444300303616 TestGrid.java RENAME testGetStatusOfCell(Cell)=>void testGetStatusOfCell(int) METHOD EditAction 1444300350737 TestGrid.java 559 3 5 1 +CompilationAction 1444300350987 TestGrid.java +CompilationAction 1444300437007 TestGrid.java +EditAction 1444300472209 Cell.java 450 4 5 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java index ed34ea6..0b022df 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java @@ -7,7 +7,7 @@ public class Cell { public Cell(String state) { - this.setState(state); + this.setState("Alive"); } public String getState() diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java index 4f4fd42..88a033f 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java @@ -34,7 +34,7 @@ public void testGetStatusOfCell(int i) { grid.createGrid(5); - grid.allCells[i][i].getState(); + grid.allCells.get(i)[i].getState(); } } From 8386e93d8c0de7e6d7f858677b23e2b6cea4049b Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:35:17 +0300 Subject: [PATCH 68/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 4 ++++ src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index be76f26..4cb7403 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -287,3 +287,7 @@ EditAction 1444300350737 TestGrid.java 559 3 5 1 CompilationAction 1444300350987 TestGrid.java CompilationAction 1444300437007 TestGrid.java EditAction 1444300472209 Cell.java 450 4 5 0 +UnitTestCaseAction 1444300474824 TestGrid.java FAIL +UnitTestSessionAction 1444300474825 TestGrid FAIL +RefactoringAction 1444300510538 TestGrid.java RENAME testGetStatusOfCell(int)=>void testGetStatusOfCell() METHOD +EditAction 1444300517361 TestGrid.java 558 3 5 1 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java index 88a033f..9e517cc 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java @@ -30,11 +30,11 @@ public void testCreateGrid() } @Test - public void testGetStatusOfCell(int i) + public void testGetStatusOfCell() { grid.createGrid(5); - grid.allCells.get(i)[i].getState(); + grid.allCells.get(0)[0].getState(); } } From aa97316836b03a2e93018bebbb99a658c13b1e85 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:36:16 +0300 Subject: [PATCH 69/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 4cb7403..6c8d49f 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -291,3 +291,6 @@ UnitTestCaseAction 1444300474824 TestGrid.java FAIL UnitTestSessionAction 1444300474825 TestGrid FAIL RefactoringAction 1444300510538 TestGrid.java RENAME testGetStatusOfCell(int)=>void testGetStatusOfCell() METHOD EditAction 1444300517361 TestGrid.java 558 3 5 1 +UnitTestCaseAction 1444300520647 TestGrid.java OK +UnitTestSessionAction 1444300520647 TestGrid.testCreateGrid OK +EditAction 1444300576944 TestGrid.java 610 3 6 2 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java index 9e517cc..f335a37 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java @@ -34,7 +34,9 @@ public void testGetStatusOfCell() { grid.createGrid(5); - grid.allCells.get(0)[0].getState(); + String actual = grid.allCells.get(0)[0].getState(); + + assertEquals("Alive", actual); } } From 526ff7fcca465036c392f1ce98e0730210036620 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:38:22 +0300 Subject: [PATCH 70/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 5 +++++ src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java | 8 ++++++++ 2 files changed, 13 insertions(+) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 6c8d49f..ed5046b 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -294,3 +294,8 @@ EditAction 1444300517361 TestGrid.java 558 3 5 1 UnitTestCaseAction 1444300520647 TestGrid.java OK UnitTestSessionAction 1444300520647 TestGrid.testCreateGrid OK EditAction 1444300576944 TestGrid.java 610 3 6 2 +UnitTestCaseAction 1444300581618 TestGrid.java FAIL +UnitTestSessionAction 1444300581619 TestGrid FAIL +RefactoringAction 1444300663658 TestCell.java ADD void getStatusOfCell() METHOD +RefactoringAction 1444300680918 TestCell.java RENAME getStatusOfCell()=>void getStateOfCell() METHOD +EditAction 1444300702679 TestCell.java 645 4 7 3 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java index f3869e9..2e2f8a1 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java @@ -15,6 +15,14 @@ public void init() { cell = new Cell("Alive"); } + + @Test + public void getStateOfCell() + { + String actual = cell.getState(); + + assertEquals("Alive", actual); + } @Test public void testLiveCellWithNoNeighborDies() From 94dc6dbe68575b19b75355f498191d639394ebf1 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:39:44 +0300 Subject: [PATCH 71/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index ed5046b..293fb18 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -299,3 +299,6 @@ UnitTestSessionAction 1444300581619 TestGrid FAIL RefactoringAction 1444300663658 TestCell.java ADD void getStatusOfCell() METHOD RefactoringAction 1444300680918 TestCell.java RENAME getStatusOfCell()=>void getStateOfCell() METHOD EditAction 1444300702679 TestCell.java 645 4 7 3 +UnitTestCaseAction 1444300707304 TestCell.java OK +UnitTestSessionAction 1444300707304 TestCell OK +EditAction 1444300784039 TestCell.java 644 4 7 3 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java index 2e2f8a1..5e01f71 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java @@ -21,7 +21,7 @@ public void getStateOfCell() { String actual = cell.getState(); - assertEquals("Alive", actual); + assertEquals("Dead", actual); } @Test From 4df4290f50c2cbe788c1cafc3f95e7622774a874 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:39:55 +0300 Subject: [PATCH 72/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 1 + src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 293fb18..282b74c 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -302,3 +302,4 @@ EditAction 1444300702679 TestCell.java 645 4 7 3 UnitTestCaseAction 1444300707304 TestCell.java OK UnitTestSessionAction 1444300707304 TestCell OK EditAction 1444300784039 TestCell.java 644 4 7 3 +EditAction 1444300795006 TestCell.java 637 4 7 3 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java index 5e01f71..ef988a7 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java @@ -13,7 +13,7 @@ public class TestCell { @Before public void init() { - cell = new Cell("Alive"); + cell = new Cell(); } @Test From 5a11ab64950df539064281f93b12f76becd1f6cb Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:40:04 +0300 Subject: [PATCH 73/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 2 ++ src/org/unioulu/tol/sqatlab/gameoflife/Cell.java | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 282b74c..0284ef9 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -303,3 +303,5 @@ UnitTestCaseAction 1444300707304 TestCell.java OK UnitTestSessionAction 1444300707304 TestCell OK EditAction 1444300784039 TestCell.java 644 4 7 3 EditAction 1444300795006 TestCell.java 637 4 7 3 +CompilationAction 1444300795225 TestCell.java +EditAction 1444300804441 Cell.java 438 4 5 0 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java index 0b022df..a29182b 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/Cell.java @@ -5,7 +5,7 @@ public class Cell { public String state; - public Cell(String state) + public Cell() { this.setState("Alive"); } From 37669482c8d609cedf9feffb19747dadce3b0743 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:40:18 +0300 Subject: [PATCH 74/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 0284ef9..5dff727 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -305,3 +305,6 @@ EditAction 1444300784039 TestCell.java 644 4 7 3 EditAction 1444300795006 TestCell.java 637 4 7 3 CompilationAction 1444300795225 TestCell.java EditAction 1444300804441 Cell.java 438 4 5 0 +UnitTestCaseAction 1444300807491 TestCell.java FAIL +UnitTestSessionAction 1444300807492 TestCell FAIL +EditAction 1444300818773 TestCell.java 638 4 7 3 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java index ef988a7..65a5897 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestCell.java @@ -21,7 +21,7 @@ public void getStateOfCell() { String actual = cell.getState(); - assertEquals("Dead", actual); + assertEquals("Alive", actual); } @Test From d68062489c6d7ac7d1c2f0aaa3e971a5b7233ce1 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:43:33 +0300 Subject: [PATCH 75/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 5dff727..0bcdd5a 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -308,3 +308,6 @@ EditAction 1444300804441 Cell.java 438 4 5 0 UnitTestCaseAction 1444300807491 TestCell.java FAIL UnitTestSessionAction 1444300807492 TestCell FAIL EditAction 1444300818773 TestCell.java 638 4 7 3 +UnitTestCaseAction 1444300862159 TestGrid.java FAIL +UnitTestSessionAction 1444300862159 TestGrid FAIL +EditAction 1444301013407 TestGrid.java 672 3 7 2 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java index f335a37..96a9002 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java @@ -34,7 +34,10 @@ public void testGetStatusOfCell() { grid.createGrid(5); - String actual = grid.allCells.get(0)[0].getState(); + String actual; + //actual = grid.allCells.get(0)[0].getState(); + + actual = grid.allCells.get(0)[0].getState(); assertEquals("Alive", actual); } From a2dab34efa85b1aa172b4382097d8011356f0f22 Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:43:40 +0300 Subject: [PATCH 76/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 1 + src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 0bcdd5a..fdc2aae 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -311,3 +311,4 @@ EditAction 1444300818773 TestCell.java 638 4 7 3 UnitTestCaseAction 1444300862159 TestGrid.java FAIL UnitTestSessionAction 1444300862159 TestGrid FAIL EditAction 1444301013407 TestGrid.java 672 3 7 2 +EditAction 1444301020717 TestGrid.java 673 3 7 2 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java index 96a9002..da78330 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java @@ -32,7 +32,7 @@ public void testCreateGrid() @Test public void testGetStatusOfCell() { - grid.createGrid(5); + grid.createGrid(10); String actual; //actual = grid.allCells.get(0)[0].getState(); From 60df260c9ff963f23d6d2eac312acc746835082a Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:46:40 +0300 Subject: [PATCH 77/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index fdc2aae..998bdc8 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -312,3 +312,6 @@ UnitTestCaseAction 1444300862159 TestGrid.java FAIL UnitTestSessionAction 1444300862159 TestGrid FAIL EditAction 1444301013407 TestGrid.java 672 3 7 2 EditAction 1444301020717 TestGrid.java 673 3 7 2 +UnitTestCaseAction 1444301023767 TestGrid.java FAIL +UnitTestSessionAction 1444301023768 TestGrid FAIL +EditAction 1444301200139 TestGrid.java 677 3 5 1 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java index da78330..e9bc65e 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java @@ -37,9 +37,9 @@ public void testGetStatusOfCell() String actual; //actual = grid.allCells.get(0)[0].getState(); - actual = grid.allCells.get(0)[0].getState(); + //actual = grid.allCells.get(0)[0].getState(); - assertEquals("Alive", actual); + //assertEquals("Alive", actual); } } From 7e816af6ce46c854ebe96771b97f7e3b3ab8576e Mon Sep 17 00:00:00 2001 From: somename Date: Thu, 8 Oct 2015 13:49:37 +0300 Subject: [PATCH 78/79] besouro automatic message --- .besouro/20151008121703649/actions.txt | 3 +++ src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java | 1 + 2 files changed, 4 insertions(+) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index 998bdc8..be1888e 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -315,3 +315,6 @@ EditAction 1444301020717 TestGrid.java 673 3 7 2 UnitTestCaseAction 1444301023767 TestGrid.java FAIL UnitTestSessionAction 1444301023768 TestGrid FAIL EditAction 1444301200139 TestGrid.java 677 3 5 1 +UnitTestCaseAction 1444301203623 TestGrid.java OK +UnitTestSessionAction 1444301203623 TestGrid OK +EditAction 1444301377447 TestGrid.java 706 3 6 1 diff --git a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java index e9bc65e..d8463a4 100644 --- a/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java +++ b/src/org/unioulu/tol/sqatlab/gameoflife/test/TestGrid.java @@ -35,6 +35,7 @@ public void testGetStatusOfCell() grid.createGrid(10); String actual; + System.out.println("Ayy"); //actual = grid.allCells.get(0)[0].getState(); //actual = grid.allCells.get(0)[0].getState(); From 9da666fffe80a72830c5b3a7e017adad7997446a Mon Sep 17 00:00:00 2001 From: Elvars Date: Thu, 8 Oct 2015 13:49:59 +0300 Subject: [PATCH 79/79] Random actions --- .besouro/20151008121703649/actions.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.besouro/20151008121703649/actions.txt b/.besouro/20151008121703649/actions.txt index be1888e..ebce315 100644 --- a/.besouro/20151008121703649/actions.txt +++ b/.besouro/20151008121703649/actions.txt @@ -318,3 +318,5 @@ EditAction 1444301200139 TestGrid.java 677 3 5 1 UnitTestCaseAction 1444301203623 TestGrid.java OK UnitTestSessionAction 1444301203623 TestGrid OK EditAction 1444301377447 TestGrid.java 706 3 6 1 +UnitTestCaseAction 1444301381051 TestGrid.java OK +UnitTestSessionAction 1444301381051 TestGrid OK