Example #1
0
 public function testValidateComponents()
 {
     $this->assertSame(false, $this->cache->validateComponents([]));
     $this->assertSame(false, $this->cache->validateComponents(''));
     $this->assertSame(false, $this->cache->validateComponents([$this->file => ['mtime' => '']]));
     $this->assertSame(false, $this->cache->validateComponents([$this->file => ['mtime' => 1]]));
     $this->assertSame(true, $this->cache->validateComponents([$this->file => ['mtime' => filemtime($this->file)]]));
 }