Example #1
0
 public function testTagInheritance()
 {
     $context = new Context();
     $context->addTag('tag');
     $sub = $context->createContext('sub');
     $this->assertTrue($sub->hasTag('tag'));
 }