settings->set([ 'labels_width' => 0.00000, 'labels_display_sgutter' => 0.00000, ]); // simply ensuring constructor didn't throw exception... $this->assertInstanceOf(DefaultLabel::class, new DefaultLabel()); } /** * @link https://app.shortcut.com/grokability/story/29281 */ public function test_handles_zero_values_for_rows_gracefully() { $this->settings->set([ 'labels_height' => 0.00000, 'labels_display_bgutter' => 0.00000, ]); // simply ensuring constructor didn't throw exception... $this->assertInstanceOf(DefaultLabel::class, new DefaultLabel()); } }