icon = new FontAwesome6Icon();
}
/**
* @return void
*/
public function testRender(): void {
$result = $this->icon->render('camera-retro');
$this->assertSame('', $result);
}
/**
* @return void
*/
public function testRenderLight(): void {
$this->icon = new FontAwesome6Icon(['namespace' => 'light']);
$result = $this->icon->render('camera-retro');
$this->assertSame('', $result);
}
/**
* @return void
*/
public function testRenderRotate(): void {
$result = $this->icon->render('camera-retro', ['rotate' => 90]);
$this->assertSame('', $result);
}
/**
* @return void
*/
public function testRenderSpin(): void {
$result = $this->icon->render('camera-retro', ['spin' => true]);
$this->assertSame('', $result);
}
}