diff --git a/.gitignore b/.gitignore index 88e99d5..708b377 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ vendor -composer.lock \ No newline at end of file +composer.lock +.phpunit.result.cache \ No newline at end of file diff --git a/.phpunit.result.cache b/.phpunit.result.cache deleted file mode 100644 index a66bd71..0000000 --- a/.phpunit.result.cache +++ /dev/null @@ -1 +0,0 @@ -{"version":1,"defects":{"Axiostudio\\FatturaElettronica\\Tests\\AnagraficaTest::testConstructorWithNullValues":4,"Tests\\Axiostudio\\FatturaElettronica\\Models\\CedentePrestatoreTest::testConstructor":4},"times":{"Axiostudio\\FatturaElettronica\\Tests\\AnagraficaTest::testConstructor":0.005,"Axiostudio\\FatturaElettronica\\Tests\\AnagraficaTest::testConstructorWithNullValues":0.001,"Tests\\Axiostudio\\FatturaElettronica\\Models\\CedentePrestatoreTest::testConstructor":0.002}} \ No newline at end of file diff --git a/tests/AnagraficaTest.php b/tests/AnagraficaTest.php deleted file mode 100644 index 0360a54..0000000 --- a/tests/AnagraficaTest.php +++ /dev/null @@ -1,23 +0,0 @@ -assertInstanceOf(Anagrafica::class, $anagrafica); - $this->assertEquals($denominazione, $anagrafica->Denominazione); - $this->assertEquals($nome, $anagrafica->Nome); - $this->assertEquals($cognome, $anagrafica->Cognome); - } -} diff --git a/tests/CedentePrestatoreTest.php b/tests/CedentePrestatoreTest.php deleted file mode 100644 index e125edf..0000000 --- a/tests/CedentePrestatoreTest.php +++ /dev/null @@ -1,23 +0,0 @@ -assertInstanceOf(CedentePrestatore::class, $cedentePrestatore); - $this->assertInstanceOf(DatiAnagrafici::class, $cedentePrestatore->DatiAnagrafici); - $this->assertInstanceOf(Sede::class, $cedentePrestatore->Sede); - } -}