コード例 #1
0
 /**
  * @test
  */
 public function getUploadFolderPathAfterSetReturnsSetUploadFolderPath()
 {
     $this->fixture->setUploadFolderPath('/foo/bar/');
     $this->assertSame('/foo/bar/', $this->fixture->getUploadFolderPath());
 }
コード例 #2
0
ファイル: FrameworkTest.php プロジェクト: TrueType/phpunit
 /**
  * @test
  */
 public function getUploadFolderPathAfterSetReturnsSetUploadFolderPath()
 {
     $this->subject->setUploadFolderPath('/foo/bar/');
     self::assertSame('/foo/bar/', $this->subject->getUploadFolderPath());
 }