invoiceninja/tests/Unit/CompanySettingsTest.php
David Bomba e4f0b08d3e
Fixes for settings (#3009)
* Add Includes

* Clean up company settings + tests

* Update Company Settings Schema

* Fixes for tests

* fixes for tests

* fixes for settings
2019-10-23 12:01:25 +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);
$this->assertEquals(1, count($diff));
}
}