diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2008-12-15 18:02:47 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2008-12-15 18:02:47 +0100 |
commit | 396b28f3d881f5debd888ba9bb9b47c2d478a76f (patch) | |
tree | 10d6e1a721ee4ef69def34a57f02d7eb3fc9e31e /tests/ImageTest.php | |
parent | 0be4d3ccf6c4fe98a72704f9463ecdea2ee5e615 (diff) |
update to Mediawiki 1.13.3; some cleanups
Diffstat (limited to 'tests/ImageTest.php')
-rw-r--r-- | tests/ImageTest.php | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/tests/ImageTest.php b/tests/ImageTest.php deleted file mode 100644 index b06d4cbf..00000000 --- a/tests/ImageTest.php +++ /dev/null @@ -1,66 +0,0 @@ -<?php - -require_once( 'PHPUnit.php' ); -require_once( '../includes/Defines.php' ); -require_once( '../includes/Profiling.php' ); -require_once( '../includes/GlobalFunctions.php' ); -require_once( '../includes/Image.php' ); - -class ImageTest extends PHPUnit_TestCase { - function ImageTest( $name ) { - $this->PHPUnit_TestCase( $name ); - } - - function setUp() { - } - - function tearDown() { - } - - function testFitBoxWidth() { - $vals = array( - array( - 'width' => 50, - 'height' => 50, - 'tests' => array( - 50 => 50, - 17 => 17, - 18 => 18 ) ), - array( - 'width' => 366, - 'height' => 300, - 'tests' => array( - 50 => 61, - 17 => 21, - 18 => 22 ) ), - array( - 'width' => 300, - 'height' => 366, - 'tests' => array( - 50 => 41, - 17 => 14, - 18 => 15 ) ), - array( - 'width' => 100, - 'height' => 400, - 'tests' => array( - 50 => 12, - 17 => 4, - 18 => 4 ) ) ); - foreach( $vals as $row ) { - extract( $row ); - foreach( $tests as $max => $expected ) { - $y = round( $expected * $height / $width ); - $result = wfFitBoxWidth( $width, $height, $max ); - $y2 = round( $result * $height / $width ); - $this->assertEquals( $expected, - $result, - "($width, $height, $max) wanted: {$expected}x$y, got: {$result}x$y2" ); - } - } - } - - /* TODO: many more! */ -} - -?>
\ No newline at end of file |