| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace Test\Depo\UniTester;
- use Depo\UniTester\TestCase;
- class AssertionTest extends TestCase
- {
- protected function setUp(): void
- {
- }
- protected function tearDown(): void
- {
- }
- protected function execute(): void
- {
- $this->testAssertTrue();
- $this->testAssertEquals();
- }
- public function testAssertTrue()
- {
- $this->assertTrue(true);
- }
- public function testAssertEquals()
- {
- $this->assertEquals(10, 5 + 5);
- }
- }
|