icon = new FontAwesome5Icon();
}
/**
* @return void
*/
public function testRender(): void {
$result = $this->icon->render('camera-retro');
$this->assertSame('', $result);
}
/**
* @return void
*/
public function testRenderLight(): void {
$this->icon = new FontAwesome5Icon(['namespace' => 'fal']);
$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);
}
}