コード例 #1
0
ファイル: getPostVarTest.php プロジェクト: bogdananton/vsc
 public function testGetPostVarCorrect()
 {
     $o = new PopulatedRequest();
     $this->assertEquals($_POST['postone'], $o->getVar('postone'));
 }
コード例 #2
0
ファイル: getVarTest.php プロジェクト: bogdananton/vsc
 public function testGetGetVarIncorrect()
 {
     $o = new PopulatedRequest();
     $this->assertEquals($o->getVar('asdf'), '');
 }
コード例 #3
0
ファイル: getTaintedVarTest.php プロジェクト: bogdananton/vsc
 public function testGetTaintedVarCorrect()
 {
     $o = new PopulatedRequest();
     $this->assertEquals('123', $o->getVar('test'));
 }