Example #1
0
 public function testDefinition()
 {
     $path = '/';
     $compiler = new FileCompiler();
     $def = new Definition($path, $compiler);
     $this->assertEquals($path, $def->getPath());
     $this->assertInstanceOf('\\Tarcisio\\Komp\\CompilerInterface', $def->getCompiler());
 }