inc() 공개 메소드

Increment value of the variable
public inc ( )
예제 #1
0
 public function testIncValue()
 {
     $variable = new Variable('a', 1, CompiledExpression::INTEGER);
     static::assertSame(1, $variable->getValue());
     $variable->inc();
     static::assertSame(2, $variable->getValue());
     $variable->inc();
     static::assertSame(3, $variable->getValue());
     $variable->inc();
     $variable->inc();
     static::assertSame(5, $variable->getValue());
 }