mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
a6f928b181
* Fixes for client portal localization * Replace Invoice Ninja Logo with user defined logo and website URL in client portal * Minor Fixes * Refactor for invitations on invoices * Fixes for settings
63 lines
1.0 KiB
PHP
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));
|
|
}
|
|
|
|
}
|