예제 #1
0
 public function testAddSequence()
 {
     $seq = new Sequence();
     $seq->add(1);
     $seq->add(0);
     $this->seq->addSequence($seq);
     $this->assertSame([0, $this->a, $this->b, 0, 1, 0], $this->seq->all());
 }