Skip to content

Commit

Permalink
Integration test moved to unit
Browse files Browse the repository at this point in the history
  • Loading branch information
d1am0nd committed Jan 9, 2018
1 parent d111be4 commit bd1993c
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Tests\Integration;
namespace Tests\Unit;

use AlphaVantage\Mocks\ApiFactory;
use AlphaVantage\Api\Stock;
Expand All @@ -16,18 +16,22 @@ public function testCurrencySuccess()
{
$this->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);
Expand Down

0 comments on commit bd1993c

Please sign in to comment.