assertSame( 'foo', $id->getId() ); $this->assertSame( 'foo', (string)$id ); $id->setId( 'bar' ); $this->assertSame( 'bar', $id->getId() ); $this->assertSame( 'bar', (string)$id ); } }