コード例 #1
0
 public function testBasicSetFileContent()
 {
     $value = uniqid('test:');
     $o = new StaticFileModel();
     $o->setFileContent($value);
     $this->assertEquals($value, $o->getFileContent());
 }
コード例 #2
0
 public function testBasic__get()
 {
     $o = new StaticFileModel();
     $o->setFilePath(__FILE__);
     $this->assertEquals(file_get_contents(__FILE__), $o->getFileContent());
 }