?? GreyFile — Mystic File Browser

Current path: home/webdevt/prestashop17/modules/gamification/tests/unit/



?? Go up: /home/webdevt/prestashop17/modules/gamification/tests

?? Viewing: BadgeTest.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());
    }
}


??

??