-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: dummy test that always passes to test workflow, unit test requir…
…e deleted
- Loading branch information
1 parent
8deff83
commit 682e56d
Showing
2 changed files
with
10 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,16 @@ | ||
<?php | ||
|
||
class HelloTest extends \PHPUnit\Framework\TestCase { | ||
/** | ||
* This test is a dummy test that always passes. | ||
/** | ||
* This test is a dummy test that always passes. | ||
* It was implemented just to test the Git Workflow | ||
* that implements PHPUnit. | ||
*/ | ||
/** @test */ | ||
// public function test_hello_test() { | ||
// $expected = true; | ||
// $actual = true; | ||
*/ | ||
public function test_hello_test() { | ||
$expected = true; | ||
$actual = true; | ||
|
||
// // Assertion | ||
// if ($actual === $expected) { | ||
// echo "Test Passed!"; | ||
// } else { | ||
// echo "Test Failed!"; | ||
// } | ||
// } | ||
// Assertion | ||
$this->assertTrue($actual === $expected); | ||
} | ||
} |