예제 #1
0
 /**
  * Test recognizing that there are no date placeholder in filename.
  */
 public function testHasNoChangingFilename()
 {
     $path = '/tmp/foo/bar';
     $filename = 'foo.txt';
     $target = new Target($path, $filename);
     $this->assertFalse($target->hasChangingFilename(), 'filename should be recognized as not changing');
 }