• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/CPANInternal-159.1/Tree-Simple-VisitorFactory-0.10/t/

Lines Matching refs:current

56     my $current = $tree->getChild(0);
57 is($current->getNodeValue(), 'E', '... got the value we expected');
58 is($current->getChild(0)->getNodeValue(), 'C', '... got the value we expected');
59 is($current->getChild(0)->getChild(0)->getNodeValue(), 'A', '... got the value we expected');
60 is($current->getChild(1)->getNodeValue(), 'D', '... got the value we expected');
61 is($current->getChild(1)->getChild(0)->getNodeValue(), 'A', '... got the value we expected');
62 is($current->getChild(1)->getChild(1)->getNodeValue(), 'B', '... got the value we expected');
82 my $current = $tree;
83 is($current->getNodeValue(), 'E', '... got the value we expected');
84 is($current->getChild(0)->getNodeValue(), 'C', '... got the value we expected');
85 is($current->getChild(0)->getChild(0)->getNodeValue(), 'A', '... got the value we expected');
86 is($current->getChild(1)->getNodeValue(), 'D', '... got the value we expected');
87 is($current->getChild(1)->getChild(0)->getNodeValue(), 'A', '... got the value we expected');
88 is($current->getChild(1)->getChild(1)->getNodeValue(), 'B', '... got the value we expected');
108 my $current = $tree->getChild(0);
109 is($current->getNodeValue(), 'Package::E', '... got the value we expected');
110 is($current->getChild(0)->getNodeValue(), 'Package::C', '... got the value we expected');
111 is($current->getChild(0)->getChild(0)->getNodeValue(), 'Package::A', '... got the value we expected');
112 is($current->getChild(1)->getNodeValue(), 'Package::D', '... got the value we expected');
113 is($current->getChild(1)->getChild(0)->getNodeValue(), 'Package::A', '... got the value we expected');
114 is($current->getChild(1)->getChild(1)->getNodeValue(), 'Package::B', '... got the value we expected');
148 my $current = $tree->getChild(0);
149 is($current->getNodeValue(), 'Three', '... got the value we expected');
150 is($current->getChild(0)->getNodeValue(), 'three', '... got the value we expected');
152 is($current->getChild(1)->getNodeValue(), 'Two', '... got the value we expected');
153 is($current->getChild(1)->getChild(0)->getNodeValue(), 'two', '... got the value we expected');
155 is($current->getChild(1)->getChild(1)->getNodeValue(), 'One', '... got the value we expected');
156 is($current->getChild(1)->getChild(1)->getChild(0)->getNodeValue(), 'new', '... got the value we expected');
157 is($current->getChild(1)->getChild(1)->getChild(1)->getNodeValue(), 'one', '... got the value we expected');