17 lines
342 B
PHP
17 lines
342 B
PHP
<?php
|
|
|
|
namespace Tests\Unit\Set;
|
|
|
|
use App\Set\Set as DomainSet;
|
|
use Tests\TestCase;
|
|
|
|
class SetTest extends TestCase
|
|
{
|
|
public function testCreatesSetWithName(): void
|
|
{
|
|
$set = new DomainSet(1, 'Daily learning');
|
|
|
|
$this->assertSame(1, $set->getId());
|
|
$this->assertSame('Daily learning', $set->getName());
|
|
}
|
|
}
|