Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/refactor progress fix tests #583

Open
wants to merge 3 commits into
base: feature/refactorProgress
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,11 @@ Conformance-Frontend/visitorLogs/*.txt
Conformance-Frontend/temp
*.log
*log*.txt
out.txt
temp.txt
vendor/*
html-log/*

# editor, os, ...
.DS_Store
.vscode/
4 changes: 2 additions & 2 deletions CMAF/CTAWAVE/UnitTests/MediaProfilesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
*/

declare(strict_types=1);
require_once '../CTAWAVE_SelectionSet.php';
require_once __DIR__.'/../CTAWAVE_SelectionSet.php';

use PHPUnit\Framework\TestCase;

final class MediaProfileTest extends TestCase
final class MediaProfilesTest extends TestCase
{

public function testAVCMediaProfile()
Expand Down
6 changes: 3 additions & 3 deletions CMAF/CTAWAVE/UnitTests/PresentationProfileTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
*/

declare(strict_types=1);
require_once '../CTAWAVE_SelectionSet.php';
require_once '../CTAWAVE_PresentationProfile.php';
include(dirname(__FILE__)."/../../../Utils/Load.php");
require_once __DIR__.'/../CTAWAVE_SelectionSet.php';
require_once __DIR__.'/../CTAWAVE_PresentationProfile.php';
require_once __DIR__.'/../../../Utils/Load.php';

use PHPUnit\Framework\TestCase;

Expand Down
8 changes: 4 additions & 4 deletions CMAF/CTAWAVE/UnitTests/ProgramsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
* and open the template in the editor.
*/
declare(strict_types=1);
require_once '../CTAWAVE_Programs.php';
require_once '../CTAWAVE_PresentationProfile.php';
require_once '../CTAWAVE_SelectionSet.php';
include(dirname(__FILE__)."/../../../Utils/Load.php");
require_once __DIR__.'/../CTAWAVE_Programs.php';
require_once __DIR__.'/../CTAWAVE_PresentationProfile.php';
require_once __DIR__.'/../CTAWAVE_SelectionSet.php';
require_once __DIR__.'/../../../Utils/Load.php';

use PHPUnit\Framework\TestCase;

Expand Down
4 changes: 2 additions & 2 deletions CMAF/CTAWAVE/UnitTests/SelectionSetTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
*/

declare(strict_types=1);
require_once '../CTAWAVE_SelectionSet.php';
include(dirname(__FILE__)."/../../../Utils/Load.php");
require_once __DIR__.'/../CTAWAVE_SelectionSet.php';
require_once __DIR__.'/../../../Utils/Load.php';

use PHPUnit\Framework\TestCase;

Expand Down
4 changes: 2 additions & 2 deletions CMAF/CTAWAVE/UnitTests/SpliceConstraintsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
*/

declare(strict_types=1);
require_once '../CTAWAVE_BaselineSpliceChecks.php';
include(dirname(__FILE__)."/../../../Utils/Load.php");
require_once __DIR__.'/../CTAWAVE_BaselineSpliceChecks.php';
require_once __DIR__.'/../../../Utils/Load.php';

use PHPUnit\Framework\TestCase;

Expand Down
5 changes: 5 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"require-dev": {
"phpunit/phpunit": "^9.5"
}
}
Loading