diff --git a/tests/Integration/FactoryTest.php b/tests/Unit/FactoryTest.php similarity index 96% rename from tests/Integration/FactoryTest.php rename to tests/Unit/FactoryTest.php index 25dac60..91f994d 100644 --- a/tests/Integration/FactoryTest.php +++ b/tests/Unit/FactoryTest.php @@ -1,6 +1,6 @@ assertTrue(ApiFactory::currency() instanceof Currency); } + public function testDigitalCurrencySuccess() { $this->assertTrue(ApiFactory::digitalCurrency() instanceof DigitalCurrency); } + public function testSectorSuccess() { $this->assertTrue(ApiFactory::sector() instanceof Sector); } + public function testStockSuccess() { $this->assertTrue(ApiFactory::stock() instanceof Stock); } + public function testGeneralSuccess() { $this->assertTrue(ApiFactory::general() instanceof General);