/**
  * @test
  */
 public function getUploadFolderPathAfterSetReturnsSetUploadFolderPath()
 {
     $this->fixture->setUploadFolderPath('/foo/bar/');
     $this->assertSame('/foo/bar/', $this->fixture->getUploadFolderPath());
 }
Exemple #2
0
 /**
  * @test
  */
 public function getUploadFolderPathAfterSetReturnsSetUploadFolderPath()
 {
     $this->subject->setUploadFolderPath('/foo/bar/');
     self::assertSame('/foo/bar/', $this->subject->getUploadFolderPath());
 }