Skip to content
This repository was archived by the owner on Feb 28, 2024. It is now read-only.

Commit 322a2e1

Browse files
- Add test coverage for __construct methods
1 parent c7f74d0 commit 322a2e1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/Developer/Json/JsonPathTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class JsonPathTest extends TestCase {
77

88
public function testConstruct_ShouldBePrivate() {
99
// GIVEN
10-
$class = new ReflectionClass('Mastercard\Developer\Encryption\JsonPath');
10+
$class = new ReflectionClass('Mastercard\Developer\Json\JsonPath');
1111
$constructor = $class->getConstructor();
1212

1313
// WHEN

tests/Developer/Utils/EncodingUtilsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class EncodingUtilsTest extends TestCase {
88

99
public function testConstruct_ShouldBePrivate() {
1010
// GIVEN
11-
$class = new ReflectionClass('Mastercard\Developer\Encryption\EncodingUtils');
11+
$class = new ReflectionClass('Mastercard\Developer\Utils\EncodingUtils');
1212
$constructor = $class->getConstructor();
1313

1414
// WHEN

tests/Developer/Utils/EncryptionUtilsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class EncryptionUtilsTest extends TestCase {
77

88
public function testConstruct_ShouldBePrivate() {
99
// GIVEN
10-
$class = new ReflectionClass('Mastercard\Developer\Encryption\EncryptionUtils');
10+
$class = new ReflectionClass('Mastercard\Developer\Utils\EncryptionUtils');
1111
$constructor = $class->getConstructor();
1212

1313
// WHEN

0 commit comments

Comments
 (0)