/** * @test */ public function replacesParam() { $version = new Version('tenhunen', array('suuruus' => 'ylistetty'), array('x5')); $ret = $version->setParam('suuruus', 'alistettu'); $this->assertEquals(array('suuruus' => 'alistettu'), $ret->getParams()); $this->assertNotSame($version, $ret); }