Completed
Pull Request — master (#58)
by Laurent
03:37
created
src/AppBundle/Tests/Entity/SubFamilyLogTest.php 1 patch
Braces   +26 added lines, -13 removed lines patch added patch discarded remove patch
@@ -5,7 +5,8 @@  discard block
 block discarded – undo
5 5
 /**
6 6
  * Generated by PHPUnit_SkeletonGenerator on 2016-02-15 at 17:17:38.
7 7
  */
8
-class SubFamilyLogTest extends \PHPUnit_Framework_TestCase {
8
+class SubFamilyLogTest extends \PHPUnit_Framework_TestCase
9
+{
9 10
 
10 11
     /**
11 12
      * @var SubFamilyLog
@@ -16,7 +17,8 @@  discard block
 block discarded – undo
16 17
      * Sets up the fixture, for example, opens a network connection.
17 18
      * This method is called before a test is executed.
18 19
      */
19
-    protected function setUp() {
20
+    protected function setUp()
21
+    {
20 22
         $this->object = new SubFamilyLog;
21 23
     }
22 24
 
@@ -24,7 +26,8 @@  discard block
 block discarded – undo
24 26
      * Tears down the fixture, for example, closes a network connection.
25 27
      * This method is called after a test is executed.
26 28
      */
27
-    protected function tearDown() {
29
+    protected function tearDown()
30
+    {
28 31
         
29 32
     }
30 33
 
@@ -32,7 +35,8 @@  discard block
 block discarded – undo
32 35
      * @covers AppBundle\Entity\SubFamilyLog::getId
33 36
      * @todo   Implement testGetId().
34 37
      */
35
-    public function testGetId() {
38
+    public function testGetId()
39
+    {
36 40
         // Remove the following lines when you implement this test.
37 41
         $this->markTestIncomplete(
38 42
             'This test has not been implemented yet.'
@@ -43,7 +47,8 @@  discard block
 block discarded – undo
43 47
      * @covers AppBundle\Entity\SubFamilyLog::setName
44 48
      * @todo   Implement testSetName().
45 49
      */
46
-    public function testSetName() {
50
+    public function testSetName()
51
+    {
47 52
         // Remove the following lines when you implement this test.
48 53
         $this->markTestIncomplete(
49 54
             'This test has not been implemented yet.'
@@ -54,7 +59,8 @@  discard block
 block discarded – undo
54 59
      * @covers AppBundle\Entity\SubFamilyLog::getName
55 60
      * @todo   Implement testGetName().
56 61
      */
57
-    public function testGetName() {
62
+    public function testGetName()
63
+    {
58 64
         // Remove the following lines when you implement this test.
59 65
         $this->markTestIncomplete(
60 66
             'This test has not been implemented yet.'
@@ -65,7 +71,8 @@  discard block
 block discarded – undo
65 71
      * @covers AppBundle\Entity\SubFamilyLog::addFamilylog
66 72
      * @todo   Implement testAddFamilylog().
67 73
      */
68
-    public function testAddFamilylog() {
74
+    public function testAddFamilylog()
75
+    {
69 76
         // Remove the following lines when you implement this test.
70 77
         $this->markTestIncomplete(
71 78
             'This test has not been implemented yet.'
@@ -76,7 +83,8 @@  discard block
 block discarded – undo
76 83
      * @covers AppBundle\Entity\SubFamilyLog::removeFamilylog
77 84
      * @todo   Implement testRemoveFamilylog().
78 85
      */
79
-    public function testRemoveFamilylog() {
86
+    public function testRemoveFamilylog()
87
+    {
80 88
         // Remove the following lines when you implement this test.
81 89
         $this->markTestIncomplete(
82 90
             'This test has not been implemented yet.'
@@ -87,7 +95,8 @@  discard block
 block discarded – undo
87 95
      * @covers AppBundle\Entity\SubFamilyLog::getFamilylogs
88 96
      * @todo   Implement testGetFamilylogs().
89 97
      */
90
-    public function testGetFamilylogs() {
98
+    public function testGetFamilylogs()
99
+    {
91 100
         // Remove the following lines when you implement this test.
92 101
         $this->markTestIncomplete(
93 102
             'This test has not been implemented yet.'
@@ -98,7 +107,8 @@  discard block
 block discarded – undo
98 107
      * @covers AppBundle\Entity\SubFamilyLog::setFamilylog
99 108
      * @todo   Implement testSetFamilylog().
100 109
      */
101
-    public function testSetFamilylog() {
110
+    public function testSetFamilylog()
111
+    {
102 112
         // Remove the following lines when you implement this test.
103 113
         $this->markTestIncomplete(
104 114
             'This test has not been implemented yet.'
@@ -109,7 +119,8 @@  discard block
 block discarded – undo
109 119
      * @covers AppBundle\Entity\SubFamilyLog::getFamilylog
110 120
      * @todo   Implement testGetFamilylog().
111 121
      */
112
-    public function testGetFamilylog() {
122
+    public function testGetFamilylog()
123
+    {
113 124
         // Remove the following lines when you implement this test.
114 125
         $this->markTestIncomplete(
115 126
             'This test has not been implemented yet.'
@@ -120,7 +131,8 @@  discard block
 block discarded – undo
120 131
      * @covers AppBundle\Entity\SubFamilyLog::jsonSerialize
121 132
      * @todo   Implement testJsonSerialize().
122 133
      */
123
-    public function testJsonSerialize() {
134
+    public function testJsonSerialize()
135
+    {
124 136
         // Remove the following lines when you implement this test.
125 137
         $this->markTestIncomplete(
126 138
             'This test has not been implemented yet.'
@@ -131,7 +143,8 @@  discard block
 block discarded – undo
131 143
      * @covers AppBundle\Entity\SubFamilyLog::__toString
132 144
      * @todo   Implement test__toString().
133 145
      */
134
-    public function test__toString() {
146
+    public function test__toString()
147
+    {
135 148
         // Remove the following lines when you implement this test.
136 149
         $this->markTestIncomplete(
137 150
             'This test has not been implemented yet.'
Please login to merge, or discard this patch.
src/AppBundle/Tests/Entity/SubFamilyLogRepositoryTest.php 1 patch
Braces   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -5,7 +5,8 @@  discard block
 block discarded – undo
5 5
 /**
6 6
  * Generated by PHPUnit_SkeletonGenerator on 2016-02-15 at 17:17:39.
7 7
  */
8
-class SubFamilyLogRepositoryTest extends \PHPUnit_Framework_TestCase {
8
+class SubFamilyLogRepositoryTest extends \PHPUnit_Framework_TestCase
9
+{
9 10
 
10 11
     /**
11 12
      * @var SubFamilyLogRepository
@@ -16,7 +17,8 @@  discard block
 block discarded – undo
16 17
      * Sets up the fixture, for example, opens a network connection.
17 18
      * This method is called before a test is executed.
18 19
      */
19
-    protected function setUp() {
20
+    protected function setUp()
21
+    {
20 22
         $this->object = new SubFamilyLogRepository;
21 23
     }
22 24
 
@@ -24,7 +26,8 @@  discard block
 block discarded – undo
24 26
      * Tears down the fixture, for example, closes a network connection.
25 27
      * This method is called after a test is executed.
26 28
      */
27
-    protected function tearDown() {
29
+    protected function tearDown()
30
+    {
28 31
         
29 32
     }
30 33
 
@@ -32,7 +35,8 @@  discard block
 block discarded – undo
32 35
      * @covers AppBundle\Entity\SubFamilyLogRepository::getFromFamilyLog
33 36
      * @todo   Implement testGetFromFamilyLog().
34 37
      */
35
-    public function testGetFromFamilyLog() {
38
+    public function testGetFromFamilyLog()
39
+    {
36 40
         // Remove the following lines when you implement this test.
37 41
         $this->markTestIncomplete(
38 42
             'This test has not been implemented yet.'
Please login to merge, or discard this patch.
src/AppBundle/Tests/Entity/ArticleRepositoryTest.php 1 patch
Braces   +10 added lines, -5 removed lines patch added patch discarded remove patch
@@ -5,7 +5,8 @@  discard block
 block discarded – undo
5 5
 /**
6 6
  * Generated by PHPUnit_SkeletonGenerator on 2016-02-15 at 17:17:37.
7 7
  */
8
-class ArticleRepositoryTest extends \PHPUnit_Framework_TestCase {
8
+class ArticleRepositoryTest extends \PHPUnit_Framework_TestCase
9
+{
9 10
 
10 11
     /**
11 12
      * @var ArticleRepository
@@ -16,7 +17,8 @@  discard block
 block discarded – undo
16 17
      * Sets up the fixture, for example, opens a network connection.
17 18
      * This method is called before a test is executed.
18 19
      */
19
-    protected function setUp() {
20
+    protected function setUp()
21
+    {
20 22
         $this->object = new ArticleRepository;
21 23
     }
22 24
 
@@ -24,7 +26,8 @@  discard block
 block discarded – undo
24 26
      * Tears down the fixture, for example, closes a network connection.
25 27
      * This method is called after a test is executed.
26 28
      */
27
-    protected function tearDown() {
29
+    protected function tearDown()
30
+    {
28 31
         
29 32
     }
30 33
 
@@ -32,7 +35,8 @@  discard block
 block discarded – undo
32 35
      * @covers AppBundle\Entity\ArticleRepository::getArticles
33 36
      * @todo   Implement testGetArticles().
34 37
      */
35
-    public function testGetArticles() {
38
+    public function testGetArticles()
39
+    {
36 40
         // Remove the following lines when you implement this test.
37 41
         $this->markTestIncomplete(
38 42
             'This test has not been implemented yet.'
@@ -43,7 +47,8 @@  discard block
 block discarded – undo
43 47
      * @covers AppBundle\Entity\ArticleRepository::getArticleFromSupplier
44 48
      * @todo   Implement testGetArticleFromSupplier().
45 49
      */
46
-    public function testGetArticleFromSupplier() {
50
+    public function testGetArticleFromSupplier()
51
+    {
47 52
         // Remove the following lines when you implement this test.
48 53
         $this->markTestIncomplete(
49 54
             'This test has not been implemented yet.'
Please login to merge, or discard this patch.
src/AppBundle/Tests/Entity/UnitStorageTest.php 1 patch
Braces   +18 added lines, -9 removed lines patch added patch discarded remove patch
@@ -5,7 +5,8 @@  discard block
 block discarded – undo
5 5
 /**
6 6
  * Generated by PHPUnit_SkeletonGenerator on 2016-02-15 at 17:17:28.
7 7
  */
8
-class UnitStorageTest extends \PHPUnit_Framework_TestCase {
8
+class UnitStorageTest extends \PHPUnit_Framework_TestCase
9
+{
9 10
 
10 11
     /**
11 12
      * @var UnitStorage
@@ -16,7 +17,8 @@  discard block
 block discarded – undo
16 17
      * Sets up the fixture, for example, opens a network connection.
17 18
      * This method is called before a test is executed.
18 19
      */
19
-    protected function setUp() {
20
+    protected function setUp()
21
+    {
20 22
         $this->object = new UnitStorage;
21 23
     }
22 24
 
@@ -24,7 +26,8 @@  discard block
 block discarded – undo
24 26
      * Tears down the fixture, for example, closes a network connection.
25 27
      * This method is called after a test is executed.
26 28
      */
27
-    protected function tearDown() {
29
+    protected function tearDown()
30
+    {
28 31
         
29 32
     }
30 33
 
@@ -32,7 +35,8 @@  discard block
 block discarded – undo
32 35
      * @covers AppBundle\Entity\UnitStorage::getId
33 36
      * @todo   Implement testGetId().
34 37
      */
35
-    public function testGetId() {
38
+    public function testGetId()
39
+    {
36 40
         // Remove the following lines when you implement this test.
37 41
         $this->markTestIncomplete(
38 42
             'This test has not been implemented yet.'
@@ -43,7 +47,8 @@  discard block
 block discarded – undo
43 47
      * @covers AppBundle\Entity\UnitStorage::setName
44 48
      * @todo   Implement testSetName().
45 49
      */
46
-    public function testSetName() {
50
+    public function testSetName()
51
+    {
47 52
         // Remove the following lines when you implement this test.
48 53
         $this->markTestIncomplete(
49 54
             'This test has not been implemented yet.'
@@ -54,7 +59,8 @@  discard block
 block discarded – undo
54 59
      * @covers AppBundle\Entity\UnitStorage::getName
55 60
      * @todo   Implement testGetName().
56 61
      */
57
-    public function testGetName() {
62
+    public function testGetName()
63
+    {
58 64
         // Remove the following lines when you implement this test.
59 65
         $this->markTestIncomplete(
60 66
             'This test has not been implemented yet.'
@@ -65,7 +71,8 @@  discard block
 block discarded – undo
65 71
      * @covers AppBundle\Entity\UnitStorage::setAbbr
66 72
      * @todo   Implement testSetAbbr().
67 73
      */
68
-    public function testSetAbbr() {
74
+    public function testSetAbbr()
75
+    {
69 76
         // Remove the following lines when you implement this test.
70 77
         $this->markTestIncomplete(
71 78
             'This test has not been implemented yet.'
@@ -76,7 +83,8 @@  discard block
 block discarded – undo
76 83
      * @covers AppBundle\Entity\UnitStorage::getAbbr
77 84
      * @todo   Implement testGetAbbr().
78 85
      */
79
-    public function testGetAbbr() {
86
+    public function testGetAbbr()
87
+    {
80 88
         // Remove the following lines when you implement this test.
81 89
         $this->markTestIncomplete(
82 90
             'This test has not been implemented yet.'
@@ -87,7 +95,8 @@  discard block
 block discarded – undo
87 95
      * @covers AppBundle\Entity\UnitStorage::__toString
88 96
      * @todo   Implement test__toString().
89 97
      */
90
-    public function test__toString() {
98
+    public function test__toString()
99
+    {
91 100
         // Remove the following lines when you implement this test.
92 101
         $this->markTestIncomplete(
93 102
             'This test has not been implemented yet.'
Please login to merge, or discard this patch.
src/AppBundle/Tests/Entity/SettingsRepositoryTest.php 1 patch
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,7 +5,8 @@  discard block
 block discarded – undo
5 5
 /**
6 6
  * Generated by PHPUnit_SkeletonGenerator on 2016-02-15 at 17:17:28.
7 7
  */
8
-class SettingsRepositoryTest extends \PHPUnit_Framework_TestCase {
8
+class SettingsRepositoryTest extends \PHPUnit_Framework_TestCase
9
+{
9 10
 
10 11
     /**
11 12
      * @var SettingsRepository
@@ -16,7 +17,8 @@  discard block
 block discarded – undo
16 17
      * Sets up the fixture, for example, opens a network connection.
17 18
      * This method is called before a test is executed.
18 19
      */
19
-    protected function setUp() {
20
+    protected function setUp()
21
+    {
20 22
         $this->object = new SettingsRepository;
21 23
     }
22 24
 
@@ -24,7 +26,8 @@  discard block
 block discarded – undo
24 26
      * Tears down the fixture, for example, closes a network connection.
25 27
      * This method is called after a test is executed.
26 28
      */
27
-    protected function tearDown() {
29
+    protected function tearDown()
30
+    {
28 31
         
29 32
     }
30 33
 
Please login to merge, or discard this patch.
src/AppBundle/Tests/Entity/CompanyTest.php 1 patch
Braces   +10 added lines, -5 removed lines patch added patch discarded remove patch
@@ -5,7 +5,8 @@  discard block
 block discarded – undo
5 5
 /**
6 6
  * Generated by PHPUnit_SkeletonGenerator on 2016-02-15 at 17:17:25.
7 7
  */
8
-class CompanyTest extends \PHPUnit_Framework_TestCase {
8
+class CompanyTest extends \PHPUnit_Framework_TestCase
9
+{
9 10
 
10 11
     /**
11 12
      * @var Company
@@ -16,7 +17,8 @@  discard block
 block discarded – undo
16 17
      * Sets up the fixture, for example, opens a network connection.
17 18
      * This method is called before a test is executed.
18 19
      */
19
-    protected function setUp() {
20
+    protected function setUp()
21
+    {
20 22
         $this->object = new Company;
21 23
     }
22 24
 
@@ -24,7 +26,8 @@  discard block
 block discarded – undo
24 26
      * Tears down the fixture, for example, closes a network connection.
25 27
      * This method is called after a test is executed.
26 28
      */
27
-    protected function tearDown() {
29
+    protected function tearDown()
30
+    {
28 31
         
29 32
     }
30 33
 
@@ -32,7 +35,8 @@  discard block
 block discarded – undo
32 35
      * @covers AppBundle\Entity\Company::setStatus
33 36
      * @todo   Implement testSetStatus().
34 37
      */
35
-    public function testSetStatus() {
38
+    public function testSetStatus()
39
+    {
36 40
         // Remove the following lines when you implement this test.
37 41
         $this->markTestIncomplete(
38 42
             'This test has not been implemented yet.'
@@ -43,7 +47,8 @@  discard block
 block discarded – undo
43 47
      * @covers AppBundle\Entity\Company::getStatus
44 48
      * @todo   Implement testGetStatus().
45 49
      */
46
-    public function testGetStatus() {
50
+    public function testGetStatus()
51
+    {
47 52
         // Remove the following lines when you implement this test.
48 53
         $this->markTestIncomplete(
49 54
             'This test has not been implemented yet.'
Please login to merge, or discard this patch.
src/AppBundle/Tests/Entity/UnitStorageRepositoryTest.php 1 patch
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,7 +5,8 @@  discard block
 block discarded – undo
5 5
 /**
6 6
  * Generated by PHPUnit_SkeletonGenerator on 2016-02-15 at 17:17:35.
7 7
  */
8
-class UnitStorageRepositoryTest extends \PHPUnit_Framework_TestCase {
8
+class UnitStorageRepositoryTest extends \PHPUnit_Framework_TestCase
9
+{
9 10
 
10 11
     /**
11 12
      * @var UnitStorageRepository
@@ -16,7 +17,8 @@  discard block
 block discarded – undo
16 17
      * Sets up the fixture, for example, opens a network connection.
17 18
      * This method is called before a test is executed.
18 19
      */
19
-    protected function setUp() {
20
+    protected function setUp()
21
+    {
20 22
         $this->object = new UnitStorageRepository;
21 23
     }
22 24
 
@@ -24,7 +26,8 @@  discard block
 block discarded – undo
24 26
      * Tears down the fixture, for example, closes a network connection.
25 27
      * This method is called after a test is executed.
26 28
      */
27
-    protected function tearDown() {
29
+    protected function tearDown()
30
+    {
28 31
         
29 32
     }
30 33
 
Please login to merge, or discard this patch.
src/AppBundle/Tests/Entity/CompanyRepositoryTest.php 1 patch
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,7 +5,8 @@  discard block
 block discarded – undo
5 5
 /**
6 6
  * Generated by PHPUnit_SkeletonGenerator on 2016-02-15 at 17:17:27.
7 7
  */
8
-class CompanyRepositoryTest extends \PHPUnit_Framework_TestCase {
8
+class CompanyRepositoryTest extends \PHPUnit_Framework_TestCase
9
+{
9 10
 
10 11
     /**
11 12
      * @var CompanyRepository
@@ -16,7 +17,8 @@  discard block
 block discarded – undo
16 17
      * Sets up the fixture, for example, opens a network connection.
17 18
      * This method is called before a test is executed.
18 19
      */
19
-    protected function setUp() {
20
+    protected function setUp()
21
+    {
20 22
         $this->object = new CompanyRepository;
21 23
     }
22 24
 
@@ -24,7 +26,8 @@  discard block
 block discarded – undo
24 26
      * Tears down the fixture, for example, closes a network connection.
25 27
      * This method is called after a test is executed.
26 28
      */
27
-    protected function tearDown() {
29
+    protected function tearDown()
30
+    {
28 31
         
29 32
     }
30 33
 
Please login to merge, or discard this patch.
src/AppBundle/Tests/Entity/FamilyLogRepositoryTest.php 1 patch
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,7 +5,8 @@  discard block
 block discarded – undo
5 5
 /**
6 6
  * Generated by PHPUnit_SkeletonGenerator on 2016-02-15 at 17:17:25.
7 7
  */
8
-class FamilyLogRepositoryTest extends \PHPUnit_Framework_TestCase {
8
+class FamilyLogRepositoryTest extends \PHPUnit_Framework_TestCase
9
+{
9 10
 
10 11
     /**
11 12
      * @var FamilyLogRepository
@@ -16,7 +17,8 @@  discard block
 block discarded – undo
16 17
      * Sets up the fixture, for example, opens a network connection.
17 18
      * This method is called before a test is executed.
18 19
      */
19
-    protected function setUp() {
20
+    protected function setUp()
21
+    {
20 22
         $this->object = new FamilyLogRepository;
21 23
     }
22 24
 
@@ -24,7 +26,8 @@  discard block
 block discarded – undo
24 26
      * Tears down the fixture, for example, closes a network connection.
25 27
      * This method is called after a test is executed.
26 28
      */
27
-    protected function tearDown() {
29
+    protected function tearDown()
30
+    {
28 31
         
29 32
     }
30 33
 
Please login to merge, or discard this patch.