Skip to content

Commit 8a17bde

Browse files
chore: update mock server docs
1 parent e868489 commit 8a17bde

12 files changed

Lines changed: 24 additions & 24 deletions

tests/Services/AccessTokenTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ protected function setUp(): void
3232
public function testCreate(): void
3333
{
3434
if (UnsupportedMockTests::$skip) {
35-
$this->markTestSkipped('Prism tests are disabled');
35+
$this->markTestSkipped('Mock server tests are disabled');
3636
}
3737

3838
$result = $this->client->accessToken->create();

tests/Services/CamsKfintechTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ protected function setUp(): void
3232
public function testParse(): void
3333
{
3434
if (UnsupportedMockTests::$skip) {
35-
$this->markTestSkipped('Prism tests are disabled');
35+
$this->markTestSkipped('Mock server tests are disabled');
3636
}
3737

3838
$result = $this->client->camsKfintech->parse();

tests/Services/Cdsl/FetchTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ protected function setUp(): void
3333
public function testRequestOtp(): void
3434
{
3535
if (UnsupportedMockTests::$skip) {
36-
$this->markTestSkipped('Prism tests are disabled');
36+
$this->markTestSkipped('Mock server tests are disabled');
3737
}
3838

3939
$result = $this->client->cdsl->fetch->requestOtp(
@@ -50,7 +50,7 @@ public function testRequestOtp(): void
5050
public function testRequestOtpWithOptionalParams(): void
5151
{
5252
if (UnsupportedMockTests::$skip) {
53-
$this->markTestSkipped('Prism tests are disabled');
53+
$this->markTestSkipped('Mock server tests are disabled');
5454
}
5555

5656
$result = $this->client->cdsl->fetch->requestOtp(
@@ -67,7 +67,7 @@ public function testRequestOtpWithOptionalParams(): void
6767
public function testVerifyOtp(): void
6868
{
6969
if (UnsupportedMockTests::$skip) {
70-
$this->markTestSkipped('Prism tests are disabled');
70+
$this->markTestSkipped('Mock server tests are disabled');
7171
}
7272

7373
$result = $this->client->cdsl->fetch->verifyOtp(
@@ -83,7 +83,7 @@ public function testVerifyOtp(): void
8383
public function testVerifyOtpWithOptionalParams(): void
8484
{
8585
if (UnsupportedMockTests::$skip) {
86-
$this->markTestSkipped('Prism tests are disabled');
86+
$this->markTestSkipped('Mock server tests are disabled');
8787
}
8888

8989
$result = $this->client->cdsl->fetch->verifyOtp(

tests/Services/CdslTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ protected function setUp(): void
3232
public function testParsePdf(): void
3333
{
3434
if (UnsupportedMockTests::$skip) {
35-
$this->markTestSkipped('Prism tests are disabled');
35+
$this->markTestSkipped('Mock server tests are disabled');
3636
}
3737

3838
$result = $this->client->cdsl->parsePdf();

tests/Services/ContractNoteTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ protected function setUp(): void
3232
public function testParse(): void
3333
{
3434
if (UnsupportedMockTests::$skip) {
35-
$this->markTestSkipped('Prism tests are disabled');
35+
$this->markTestSkipped('Mock server tests are disabled');
3636
}
3737

3838
$result = $this->client->contractNote->parse();

tests/Services/CreditsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ protected function setUp(): void
3232
public function testCheck(): void
3333
{
3434
if (UnsupportedMockTests::$skip) {
35-
$this->markTestSkipped('Prism tests are disabled');
35+
$this->markTestSkipped('Mock server tests are disabled');
3636
}
3737

3838
$result = $this->client->credits->check();

tests/Services/InboxTest.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ protected function setUp(): void
3535
public function testCheckConnectionStatus(): void
3636
{
3737
if (UnsupportedMockTests::$skip) {
38-
$this->markTestSkipped('Prism tests are disabled');
38+
$this->markTestSkipped('Mock server tests are disabled');
3939
}
4040

4141
$result = $this->client->inbox->checkConnectionStatus(
@@ -50,7 +50,7 @@ public function testCheckConnectionStatus(): void
5050
public function testCheckConnectionStatusWithOptionalParams(): void
5151
{
5252
if (UnsupportedMockTests::$skip) {
53-
$this->markTestSkipped('Prism tests are disabled');
53+
$this->markTestSkipped('Mock server tests are disabled');
5454
}
5555

5656
$result = $this->client->inbox->checkConnectionStatus(
@@ -65,7 +65,7 @@ public function testCheckConnectionStatusWithOptionalParams(): void
6565
public function testConnectEmail(): void
6666
{
6767
if (UnsupportedMockTests::$skip) {
68-
$this->markTestSkipped('Prism tests are disabled');
68+
$this->markTestSkipped('Mock server tests are disabled');
6969
}
7070

7171
$result = $this->client->inbox->connectEmail(
@@ -80,7 +80,7 @@ public function testConnectEmail(): void
8080
public function testConnectEmailWithOptionalParams(): void
8181
{
8282
if (UnsupportedMockTests::$skip) {
83-
$this->markTestSkipped('Prism tests are disabled');
83+
$this->markTestSkipped('Mock server tests are disabled');
8484
}
8585

8686
$result = $this->client->inbox->connectEmail(
@@ -96,7 +96,7 @@ public function testConnectEmailWithOptionalParams(): void
9696
public function testDisconnectEmail(): void
9797
{
9898
if (UnsupportedMockTests::$skip) {
99-
$this->markTestSkipped('Prism tests are disabled');
99+
$this->markTestSkipped('Mock server tests are disabled');
100100
}
101101

102102
$result = $this->client->inbox->disconnectEmail(
@@ -111,7 +111,7 @@ public function testDisconnectEmail(): void
111111
public function testDisconnectEmailWithOptionalParams(): void
112112
{
113113
if (UnsupportedMockTests::$skip) {
114-
$this->markTestSkipped('Prism tests are disabled');
114+
$this->markTestSkipped('Mock server tests are disabled');
115115
}
116116

117117
$result = $this->client->inbox->disconnectEmail(
@@ -126,7 +126,7 @@ public function testDisconnectEmailWithOptionalParams(): void
126126
public function testListCasFiles(): void
127127
{
128128
if (UnsupportedMockTests::$skip) {
129-
$this->markTestSkipped('Prism tests are disabled');
129+
$this->markTestSkipped('Mock server tests are disabled');
130130
}
131131

132132
$result = $this->client->inbox->listCasFiles(xInboxToken: 'x-inbox-token');
@@ -139,7 +139,7 @@ public function testListCasFiles(): void
139139
public function testListCasFilesWithOptionalParams(): void
140140
{
141141
if (UnsupportedMockTests::$skip) {
142-
$this->markTestSkipped('Prism tests are disabled');
142+
$this->markTestSkipped('Mock server tests are disabled');
143143
}
144144

145145
$result = $this->client->inbox->listCasFiles(

tests/Services/KfintechTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ protected function setUp(): void
3232
public function testGenerateCas(): void
3333
{
3434
if (UnsupportedMockTests::$skip) {
35-
$this->markTestSkipped('Prism tests are disabled');
35+
$this->markTestSkipped('Mock server tests are disabled');
3636
}
3737

3838
$result = $this->client->kfintech->generateCas(
@@ -50,7 +50,7 @@ public function testGenerateCas(): void
5050
public function testGenerateCasWithOptionalParams(): void
5151
{
5252
if (UnsupportedMockTests::$skip) {
53-
$this->markTestSkipped('Prism tests are disabled');
53+
$this->markTestSkipped('Mock server tests are disabled');
5454
}
5555

5656
$result = $this->client->kfintech->generateCas(

tests/Services/LogsTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ protected function setUp(): void
3333
public function testCreate(): void
3434
{
3535
if (UnsupportedMockTests::$skip) {
36-
$this->markTestSkipped('Prism tests are disabled');
36+
$this->markTestSkipped('Mock server tests are disabled');
3737
}
3838

3939
$result = $this->client->logs->create();
@@ -46,7 +46,7 @@ public function testCreate(): void
4646
public function testGetSummary(): void
4747
{
4848
if (UnsupportedMockTests::$skip) {
49-
$this->markTestSkipped('Prism tests are disabled');
49+
$this->markTestSkipped('Mock server tests are disabled');
5050
}
5151

5252
$result = $this->client->logs->getSummary();

tests/Services/NsdlTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ protected function setUp(): void
3232
public function testParse(): void
3333
{
3434
if (UnsupportedMockTests::$skip) {
35-
$this->markTestSkipped('Prism tests are disabled');
35+
$this->markTestSkipped('Mock server tests are disabled');
3636
}
3737

3838
$result = $this->client->nsdl->parse();

0 commit comments

Comments
 (0)