summaryrefslogtreecommitdiff
path: root/test/HTTP_POST_multipartTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'test/HTTP_POST_multipartTest.php')
-rw-r--r--test/HTTP_POST_multipartTest.php17
1 files changed, 6 insertions, 11 deletions
diff --git a/test/HTTP_POST_multipartTest.php b/test/HTTP_POST_multipartTest.php
index c15f252..0abb282 100644
--- a/test/HTTP_POST_multipartTest.php
+++ b/test/HTTP_POST_multipartTest.php
@@ -5,24 +5,19 @@ require_once('src/HTTP_POST_multipart.php');
class HTTP_POST_multipartTest extends PHPUnit_Framework_TestCase {
- protected static $_class;
-
- public static function setUpBeforeClass() {
- # Set all methods to be public so we can test them
- self::$_class = new ReflectionClass('HTTP_POST_multipart');
- foreach (self::$_class->getMethods() as $method) {
- $method->setAccessible(true);
- }
- }
-
/**
* @dataProvider providerBuildDataPart
*/
public function testBuildDataPart($name, $data, $expected, $ex) {
if ($ex) $this->setExpectedException($ex);
+
+ $class = new ReflectionClass('HTTP_POST_multipart');
+ $method = $class->getMethod('bulidDataPart');
+ $method->setAccessible(true);
+
$this->assertEquals(
$expected,
- self::$_class->getMethod('bulidDataPart', array($name, $data))
+ $method->invokeArgs(null, array($name, $data))
);
}