field = new DMSUploadField('StubUploadField'); } /** * The validator is coded to always return true. Replace this test if this behaviour changes in future. */ public function testValidatorAlwaysReturnsTrue() { $this->assertTrue($this->field->validate('foo')); } public function testGetItemHandler() { $this->assertInstanceOf('DMSUploadField_ItemHandler', $this->field->getItemHandler(123)); } /** * Ensure that the folder name can be get/set and that the value set is casted to a string */ public function testCanGetAndSetFolderName() { $this->field->setFolderName('qwerty'); $this->assertSame('qwerty', $this->field->getFolderName()); $this->field->setFolderName(123); $this->assertSame('123', $this->field->getFolderName()); } }