From c40f7505f1c4b082d52dd38586cf3a72052ce4b8 Mon Sep 17 00:00:00 2001 From: Andrea Pollastri Date: Mon, 13 Nov 2023 15:42:39 +0100 Subject: [PATCH] Fix --- .gitignore | 3 ++- .phpunit.result.cache | 1 - tests/AnagraficaTest.php | 23 ----------------------- tests/CedentePrestatoreTest.php | 23 ----------------------- 4 files changed, 2 insertions(+), 48 deletions(-) delete mode 100644 .phpunit.result.cache delete mode 100644 tests/AnagraficaTest.php delete mode 100644 tests/CedentePrestatoreTest.php 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); - } -}