File "Issue1337Test.php"

Full Path: /www/wwwroot/shphe-en.com/smsapi/api_sdk/vendor/phpunit/phpunit/tests/Regression/GitHub/1337/Issue1337Test.php
File size: 339 bytes
MIME-type: --
Charset: utf-8

<?php
class Issue1337Test extends PHPUnit_Framework_TestCase
{
    /**
     * @dataProvider dataProvider
     */
    public function testProvider($a)
    {
        $this->assertTrue($a);
    }

    public function dataProvider()
    {
        return array(
          'c:\\'=> array(true),
          0.9   => array(true)
        );
    }
}