public function testSetTimeZoneImmutable() { $a = new DateTime("2009-12-12"); $b = $a->setTimezone(new \DateTimeZone("UTC")); $this->assertNotSame($a, $b); }