operatingSystem = new OperatingSystem(); } public function testBugWith0InVersion() { $this->operatingSystem->major = 0; $this->operatingSystem->minor = 0; $this->operatingSystem->patch = 0; $this->operatingSystem->patchMinor = 0; $this->assertSame('0.0.0.0', $this->operatingSystem->toVersion()); $this->assertSame('Other 0.0.0.0', $this->operatingSystem->toString()); } }