Skip to content

Commit f56276c

Browse files
committed
Move test-specific classes into test-folder
1 parent d484908 commit f56276c

37 files changed

+38
-64
lines changed

src/BigBlueButton.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -469,9 +469,9 @@ public function setTimeOut(int $TimeOutInSeconds): self
469469
}
470470

471471
/**
472-
* @deprecated Replaced by same function-name provided by UrlBuilder-BigBlueButton
472+
* @deprecated replaced by same function-name provided by UrlBuilder-BigBlueButton
473473
*
474-
* Public accessor for buildUrl.
474+
* Public accessor for buildUrl
475475
*/
476476
public function buildUrl(string $method = '', string $params = '', bool $append = true): string
477477
{

tests/BigBlueButtonTest.php

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@
2828
use BigBlueButton\Parameters\GetRecordingsParameters;
2929
use BigBlueButton\Parameters\IsMeetingRunningParameters;
3030
use BigBlueButton\Parameters\PublishRecordingsParameters;
31-
use BigBlueButton\Util\Fixtures;
32-
use BigBlueButton\Util\ParamsIterator;
31+
use BigBlueButton\TestServices\EnvLoader;
32+
use BigBlueButton\TestServices\Fixtures;
33+
use BigBlueButton\TestServices\ParamsIterator;
3334

3435
/**
3536
* Class BigBlueButtonTest.
@@ -84,9 +85,9 @@ public function testApiVersion(): void
8485
// Create Meeting
8586

8687
/**
87-
* @deprecated Test will be removed together with the deprecated function from BigBlueButton::class
88+
* @deprecated test will be removed together with the deprecated function from BigBlueButton::class
8889
*
89-
* Test create meeting URL.
90+
* Test create meeting URL
9091
*/
9192
public function testCreateMeetingUrl(): void
9293
{
@@ -175,9 +176,9 @@ public function testCreateMeetingWithMultiDocument(): void
175176
// Join Meeting
176177

177178
/**
178-
* @deprecated Test will be removed together with the deprecated function from BigBlueButton::class
179+
* @deprecated test will be removed together with the deprecated function from BigBlueButton::class
179180
*
180-
* Test create join meeting URL.
181+
* Test create join meeting URL
181182
*/
182183
public function testCreateJoinMeetingUrl(): void
183184
{
@@ -231,9 +232,9 @@ public function testJoinMeeting(): void
231232
// End Meeting
232233

233234
/**
234-
* @deprecated Test will be removed together with the deprecated function from BigBlueButton::class
235+
* @deprecated test will be removed together with the deprecated function from BigBlueButton::class
235236
*
236-
* Test generate end meeting URL.
237+
* Test generate end meeting URL
237238
*/
238239
public function testCreateEndMeetingUrl(): void
239240
{

tests/Parameters/CreateMeetingParametersTest.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,12 @@
2121
namespace BigBlueButton\Parameters;
2222

2323
use BigBlueButton\TestCase;
24-
use BigBlueButton\Util\Fixtures;
24+
use BigBlueButton\TestServices\Fixtures;
2525

2626
/**
2727
* Class CreateMeetingParametersTest.
2828
*
2929
* @internal
30-
*
31-
*
3230
*/
3331
class CreateMeetingParametersTest extends TestCase
3432
{

tests/Parameters/DeleteRecordingsParametersTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424

2525
/**
2626
* @internal
27-
*
28-
*
2927
*/
3028
class DeleteRecordingsParametersTest extends TestCase
3129
{

tests/Parameters/EndMeetingParametersTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424

2525
/**
2626
* @internal
27-
*
28-
*
2927
*/
3028
class EndMeetingParametersTest extends TestCase
3129
{

tests/Parameters/GetMeetingInfoParametersTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424

2525
/**
2626
* @internal
27-
*
28-
*
2927
*/
3028
class GetMeetingInfoParametersTest extends TestCase
3129
{

tests/Parameters/GetRecordingTextTracksParametersTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424

2525
/**
2626
* @internal
27-
*
28-
*
2927
*/
3028
class GetRecordingTextTracksParametersTest extends TestCase
3129
{

tests/Parameters/GetRecordingsParametersTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424

2525
/**
2626
* @internal
27-
*
28-
*
2927
*/
3028
class GetRecordingsParametersTest extends TestCase
3129
{

tests/Parameters/HooksCreateParametersTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424

2525
/**
2626
* @internal
27-
*
28-
*
2927
*/
3028
class HooksCreateParametersTest extends TestCase
3129
{

tests/Parameters/HooksDestroyParametersTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424

2525
/**
2626
* @internal
27-
*
28-
*
2927
*/
3028
class HooksDestroyParametersTest extends TestCase
3129
{

0 commit comments

Comments
 (0)