function testIntInput()
 {
     $inp = new IntInput('anInt');
     $from = array('anInt' => '88');
     $r = $inp->getValue($from);
     $this->assertSame(88, $r);
 }