1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- namespace Test\Preview;
- class ImageTest extends Provider {
- protected function setUp(): void {
- parent::setUp();
- $fileName = 'testimage.jpg';
- $this->imgPath = $this->prepareTestFile($fileName, \OC::$SERVERROOT . '/tests/data/' . $fileName);
- $this->width = 1680;
- $this->height = 1050;
- $this->provider = new \OC\Preview\JPEG();
- }
- }
|