Files
kalsport.pl/modules/gamification/tests/unit/BadgeTest.php
2024-11-05 12:22:50 +01:00

22 lines
345 B
PHP

<?php
use PHPUnit\Framework\TestCase;
class BadgeTest extends TestCase
{
/**
* @var Badge
*/
private $badge;
protected function setUp()
{
$this->badge = new Badge();
}
public function testImgUrl()
{
$this->assertStringStartsWith(__PS_BASE_URI__, $this->badge->getBadgeImgUrl());
}
}