assertSame('half', FormFieldDisplayWidth::HALF->value); $this->assertSame('full', FormFieldDisplayWidth::FULL->value); $this->assertCount(2, FormFieldDisplayWidth::cases()); } public function test_values_returns_string_array(): void { $this->assertSame(['half', 'full'], FormFieldDisplayWidth::values()); } }