public function testMultipleBuildWithReset()
 {
     $this->pointBuilder->setPrefixJavascriptVariable('foo')->setX(1)->setY(2);
     $point1 = $this->pointBuilder->build();
     $this->pointBuilder->reset();
     $point2 = $this->pointBuilder->build();
     $this->assertSame('foo', substr($point1->getJavascriptVariable(), 0, 3));
     $this->assertSame(1, $point1->getX());
     $this->assertSame(2, $point1->getY());
     $this->assertSame('point_', substr($point2->getJavascriptVariable(), 0, 6));
     $this->assertSame(0, $point2->getX());
     $this->assertSame(0, $point2->getY());
 }