assertEquals('', new Comment(''));
$this->assertEquals('', new Comment('foo'));
$this->assertEquals('', new Comment('foo-bar'));
$this->assertNotEquals('', new Comment('foo--bar'));
}
public function testModification(): void
{
$comment = new Comment('foo');
$this->assertEquals('foo', $comment->value());
$comment->setValue('bar');
$this->assertEquals('bar', $comment->value());
}
}