assertSame('never', FormSchemaSnapshotMode::NEVER->value); $this->assertSame('on_submit', FormSchemaSnapshotMode::ON_SUBMIT->value); $this->assertSame('always', FormSchemaSnapshotMode::ALWAYS->value); $this->assertCount(3, FormSchemaSnapshotMode::cases()); } public function test_values_returns_string_array(): void { $this->assertSame(['never', 'on_submit', 'always'], FormSchemaSnapshotMode::values()); } }