1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/tests/Unit/CompanySettingsTest.php
David Bomba f8551d6119
Multi-Master Support for MySQL (#3146)
* Minor fixes for OpenAPI docs for clients

* Add fields to company transformer

* Padding email templates, system level and custom

* Minor fixes for email template subject

* Working on Email Templates

* Clean up User model, remove redundant permissions methods

* Implement Locale for API

* Implement Locale middleware for client routes

* Remove global constants

* Fixes for removing the global constants file

* Working on TDD for emails

* TDD for emails

* implement additional template variables

* Add support for Multi-Master replication with MySQL
2019-12-14 16:49:48 +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, 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));
}
}