invoiceninja/tests/Unit/CompanySettingsTest.php
David Bomba 5fafbac36f
Tax Rates (#3026)
* Insert generic for client country if not set

* Invoice fixes

* fixes

* Schema changes

* Refactor Schema and implement fixes for testS

* Use Dispatcher for system logs

* Add TaxRateController

* Update OpenAPI definitions for Tax Rates
2019-10-29 13:55:26 +11:00

63 lines
1.0 KiB
PHP

<?php
namespace Tests\Unit;
use App\DataMapper\CompanySettings;
use Tests\TestCase;
/**
* @test
* @covers App\DataMapper\CompanySettings
*/
class CompanySettingsTest extends TestCase
{
public function setUp() :void
{
parent::setUp();
$this->company_settings = CompanySettings::defaults();
}
public function testTimezoneId()
{
$this->assertEquals($this->company_settings->timezone_id, 15);
}
public function testLanguageId()
{
$this->assertEquals($this->company_settings->language_id, 1);
}
public function testPropertyIssetOk()
{
$this->assertTrue(isset($this->company_settings->custom_value1));
}
public function testPropertyIsSet()
{
$this->assertTrue(isset($this->company_settings->timezone_id));
}
public function testSettingsArrayAgainstCastsArray()
{
$company_settings = json_decode(json_encode(CompanySettings::defaults()),true);
$casts = CompanySettings::$casts;
$diff = array_diff_key($company_settings, $casts);
\Log::error($diff);
$this->assertEquals(1, count($diff));
}
}