[SoapClient] [Tests] Removed uploaded file

This commit is contained in:
Francis Besset 2014-08-14 11:22:20 +02:00
parent 3cfeea8371
commit e2de214ea5
1 changed files with 5 additions and 1 deletions

View File

@ -42,6 +42,8 @@ class SwaServerInteropTest extends TestCase
$result = $sc->downloadFile($download);
$this->assertEquals($upload->data, $result->data);
unlink(__DIR__.'/../ServerInterop/'.$download->name);
}
public function testUploadDownloadImage()
@ -60,5 +62,7 @@ class SwaServerInteropTest extends TestCase
$result = $sc->downloadFile($download);
$this->assertEquals($upload->data, $result->data);
unlink(__DIR__.'/../ServerInterop/'.$download->name);
}
}
}