public function testMethodString6getStringFromStrategyOutput()
 {
     $property = new Property();
     $property->setPropertyName("testName");
     $property->setTargetEntity("Application\\Entity\\TestTargetEntity");
     $property->setInverse("testInversedBy");
     $property->setAssociation(6);
     $methodString6 = new MethodString6($property);
     $resultingMethodString = $methodString6->getStringFromStrategy();
     $expectedOutput = "\tpublic function setTestName(\\Application\\Entity\\TestTargetEntity \$testName = null) {\n\t\t\$this->testName = \$testName;\n\t\t(\$this->testName) ? \$this->testName->addToTestInversedBy(\$this) : \$this->testName->removeFromTestInversedBy(\$this);\n\t\treturn \$this;\n\t}\n\n\tpublic function getTestName() {\n\t\treturn \$this->testName;\n\t}\n\n";
     $this->assertEquals($expectedOutput, $resultingMethodString);
 }
 public function testMethodString10getStringFromStrategyOutput()
 {
     $property = new Property();
     $property->setPropertyName("testName");
     $property->setTargetEntity("Application\\Entity\\TestTargetEntity");
     $property->setInverse("testInversedBy");
     $property->setAssociation(10);
     $methodString10 = new MethodString10($property);
     $resultingMethodString = $methodString10->getStringFromStrategy();
     $expectedOutput = "\tpublic function addToTestName(\\Application\\Entity\\TestTargetEntity \$singleEntity) {\n\t\tif(!\$this->testName->contains(\$singleEntity)) {\n\t\t\t\$this->testName->add(\$singleEntity);\n\t\t\t\$singleEntity->addToTestInversedBy(\$this);\n\t\t}\n\t\treturn \$this;\n\t}\n\n\tpublic function addTestName(Collection \$testName) {\n\t\tforeach(\$testName as \$singleEntity) {\n\t\t\t\$this->addToTestName(\$singleEntity);\n\t\t}\n\t\treturn \$this;\n\t}\n\n\tpublic function removeFromTestName(\\Application\\Entity\\TestTargetEntity \$singleEntity) {\n\t\tif(\$this->testName->contains(\$singleEntity)) {\n\t\t\t\$this->testName->removeElement(\$singleEntity);\n\t\t\t\$singleEntity->removeFromTestInversedBy(\$this);\n\t\t}\n\t\treturn \$this;\n\t}\n\n\tpublic function removeTestName(Collection \$testName) {\n\t\tforeach(\$testName as \$singleEntity) {\n\t\t\t\$this->removeFromTestName(\$singleEntity);\n\t\t}\n\t\treturn \$this;\n\t}\n\n\tpublic function clearTestName() {\n\t\tforeach(\$this->testName as \$singleEntity) {\n\t\t\t\$this->removeFromTestName(\$singleEntity);\n\t\t}\n\t\treturn \$this;\n\t}\n\n\tpublic function getTestName() {\n\t\treturn \$this->testName;\n\t}\n\n\tpublic function setTestName(\$testName) {\n\t\t\$this->clearTestName();\n\t\tforeach(\$testName as \$singleEntity) {\n\t\t\t\$this->addToTestName(\$singleEntity);\n\t\t}\n\t\treturn \$this;\n\t}\n\n";
     $this->assertEquals($expectedOutput, $resultingMethodString);
 }