1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/tests/Unit/CompanySettingsTest.php
David Bomba 43e57d0117
Fixes for self-update (#3514)
* minor fix for payment notifications

* styleci

* Limit Self updating to self hosters only
:

* Fixes for designs

* Minor fixes for self-update
2020-03-21 16:37:30 +11:00

51 lines
1.1 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, 1);
}
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));
}
}