Exemplo n.º 1
0
 public function testAddSequence()
 {
     $seq = new Sequence();
     $seq->add(1);
     $seq->add(0);
     $this->seq->addSequence($seq);
     $this->assertSame(array(0, $this->a, $this->b, 0, 1, 0), $this->seq->all());
 }