Skip to content

Commit

Permalink
Update code
Browse files Browse the repository at this point in the history
  • Loading branch information
mustanggb authored Feb 23, 2024
1 parent 712aaac commit 2d77215
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tests/Document/DocumentRatioHistoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@

use DateTime;
use PHPUnit\Framework\TestCase;
use Tbbc\MoneyBundle\Document\RatioHistory;
use Tbbc\MoneyBundle\Document\DocumentRatioHistory;

class DocumentRatioHistoryTest extends TestCase
{
public function testClassExists(): void
{
$this->assertTrue(class_exists(\Tbbc\MoneyBundle\Document\RatioHistory::class));
$this->assertTrue(class_exists(\Tbbc\MoneyBundle\Document\DocumentRatioHistory::class));
}

public function testProperties(): void
{
$ratioHistory = new RatioHistory();
$ratioHistory = new DocumentRatioHistory();

self::assertNull($ratioHistory->getId());
$ratioHistory->setId(1);
Expand Down

0 comments on commit 2d77215

Please sign in to comment.