Skip to content

Commit

Permalink
try to complete phpunit
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitexus committed Oct 4, 2024
1 parent 54742ac commit 8add71e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/src/Ease/AtomTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@ protected function tearDown(): void
*/
public function testgetObjectName(): void
{
$this->assertNotEmpty($this->object->getObjectName());
$this->assertNotEmpty($this->object->getObjectName(),'Object does not provide its name');
}

/**
* @covers \Ease\Atom::__toString
*/
public function testToString(): void
{
$this->assertIsString($this->object->__toString());
$this->assertIsString($this->object->__toString(),'Object does not provide its textual representation');
}

/**
Expand Down

0 comments on commit 8add71e

Please sign in to comment.