mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
f8551d6119
* 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
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, 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));
|
|
}
|
|
|
|
}
|