Unused messages
[phpmyadmin.git] / test / libraries / common / PMA_printableBitValue_test.php
blobeea420d3b3348f2bc660b0412c1559a497b6cb8a
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * Test printableBitValue function
6 * @package PhpMyAdmin-test
7 * @version $Id: PMA_printableBitValue_test.php
8 * @group common.lib-tests
9 */
12 * Include to test.
14 require_once 'libraries/common.lib.php';
16 class PMA_printableBitValue_test extends PHPUnit_Framework_TestCase
19 /**
20 * data provider for printable bit value test
22 * @return array
24 public function printableBitValueDataProvider() {
25 return array(
26 array('testtest', 64, '0111010001100101011100110111010001110100011001010111001101110100'),
27 array('test', 32, '01110100011001010111001101110100')
31 /**
32 * test for generating string contains printable bit value of selected data
33 * @dataProvider printableBitValueDataProvider
36 public function testPrintableBitValue($a, $b, $e) {
37 $this->assertEquals($e, PMA_printable_bit_value($a, $b));