コード例 #1
0
 /**
  * test of changing string from horizontal to vertical orientation
  *
  * @param string $a String
  * @param string $e Expected output
  *
  * @return void
  *
  * @dataProvider flipStringDataProvider
  */
 public function testFlipString($a, $e)
 {
     $this->assertEquals($e, PMA\libraries\Util::flipstring($a));
 }