Esempio n. 1
0
 protected function levelIsOutsideFlexibleSelection($level)
 {
     return $this->lastFlexibleLevel && $level != $this->lastFlexibleLevel && !$this->schema->levelIsBefore($level, $this->lastFlexibleLevel);
 }
 function testLevelIsBefore2()
 {
     $schema = new VF_Schema();
     $this->assertFalse( $schema->levelIsBefore( 'model', 'make' ) );
 }