Skip to content

Commit 631eb7a

Browse files
committed
+ Fix TDD for getMockForAbstractClass.-
1 parent cbb8112 commit 631eb7a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/HttpMethodTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class HttpMethodTest extends TestCase
4747

4848
public function setUp()
4949
{
50-
$this->httpMethod = $this->getMockForAbstractClass(HttpMethod::class);
50+
$this->httpMethod = $this->getMockForAbstractClass('Matricali\Http\HttpMethod');
5151
}
5252

5353
/**

tests/HttpStatusCodeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ class HttpStatusCodeTest extends TestCase
102102

103103
public function setUp()
104104
{
105-
$this->httpStatusCode = $this->getMockForAbstractClass(HttpStatusCode::class);
105+
$this->httpStatusCode = $this->getMockForAbstractClass('Matricali\Http\HttpStatusCode');
106106
}
107107

108108
/**

tests/SchemeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class SchemeTest extends TestCase
4141

4242
public function setUp()
4343
{
44-
$this->scheme = $this->getMockForAbstractClass(Scheme::class);
44+
$this->scheme = $this->getMockForAbstractClass('Matricali\Http\Scheme');
4545
}
4646

4747
/**

0 commit comments

Comments
 (0)