From 4664b779371a1497134b77c771a7d4eef2f775ec Mon Sep 17 00:00:00 2001
From: Cristiano Magro <cristiano.magro@vola.it>
Date: Tue, 27 Aug 2019 11:21:42 +0200
Subject: [PATCH] Refactor e gestione di extensions multiple su stesso filtro
---
tests/SetupUploadTest.php | 45 +++++++++++++++++++++++++++++----------------
1 files changed, 29 insertions(+), 16 deletions(-)
diff --git a/tests/SetupUploadTest.php b/tests/SetupUploadTest.php
index 930681e..a0ac041 100644
--- a/tests/SetupUploadTest.php
+++ b/tests/SetupUploadTest.php
@@ -1,16 +1,16 @@
<?php
-
/**
* Implementazione dei test per la classe SetupUpload
*
* @author Cristiano Magro
*/
-class SetupUploadTest extends PHPUnit_Framework_TestCase {
+class SetupUploadTest extends PHPUnit_Framework_TestCase
+{
/**
- * @var $object SetupUpload
+ * @var $object SetupUpload
*/
protected $object;
@@ -18,7 +18,8 @@
* Set up fixture, inizializzazione dei test.
* Eseguito prima di ogni test
*/
- protected function setUp() {
+ protected function setUp()
+ {
$this->object = SetupUpload::create();
}
@@ -26,11 +27,13 @@
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
- protected function tearDown() {
+ protected function tearDown()
+ {
}
- public static function setUpBeforeClass() {
+ public static function setUpBeforeClass()
+ {
}
@@ -39,7 +42,8 @@
*
* @since 0.3.0
*/
- public function test_str2Bytes() {
+ public function test_str2Bytes()
+ {
$this->assertEquals('1', SetupUpload::str2Bytes('1'));
$this->assertEquals('1', SetupUpload::str2Bytes('1b'));
@@ -71,11 +75,13 @@
* @expectedException Upload_Exc_Error
* @dataProvider getBytesStringNotValid
*/
- public function test_str2BytesNonValido($byteString) {
+ public function test_str2BytesNonValido($byteString)
+ {
SetupUpload::str2Bytes($byteString);
}
- public function getBytesStringNotValid() {
+ public function getBytesStringNotValid()
+ {
return array(
array(''),
array('b'),
@@ -89,7 +95,8 @@
*
* @since 0.3.1
*/
- public function testDefaultValue() {
+ public function testDefaultValue()
+ {
$this->assertEquals(1, $this->object->getNumMaxFiles());
}
@@ -100,11 +107,13 @@
* @expectedException Upload_Exc_Error
* @dataProvider getNumMaxFilesException
*/
- public function testNotValidNumMaxFilesGetException($num) {
+ public function testNotValidNumMaxFilesGetException($num)
+ {
$this->object->setNumMaxFiles($num);
}
- public function getNumMaxFilesException() {
+ public function getNumMaxFilesException()
+ {
return array(
array(''),
array(0),
@@ -119,12 +128,14 @@
* @since 0.3.1
* @dataProvider getSomeMaxFiles
*/
- public function testSomeValidMaxFiles($num) {
+ public function testSomeValidMaxFiles($num)
+ {
$this->object->setNumMaxFiles($num);
$this->assertEquals($num, $this->object->getNumMaxFiles());
}
- public function getSomeMaxFiles() {
+ public function getSomeMaxFiles()
+ {
return array(
array(2),
array(020),
@@ -138,7 +149,8 @@
*
* @since 0.3.1
*/
- public function testSetSizeMaxFilesByte() {
+ public function testSetSizeMaxFilesByte()
+ {
$this->object->setSizeMaxFilesByte(100);
$this->assertEquals(100, $this->object->getSizeMaxFilesByte());
@@ -154,7 +166,8 @@
*
* @since 0.3.1
*/
- public function testSetSizeLimitFile() {
+ public function testSetSizeLimitFile()
+ {
$this->object->setSizeLimitFile(100);
$this->assertEquals(100, $this->object->getSizeLimitFile());
--
Gitblit v1.8.0