1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 13:12:50 +01:00
invoiceninja/tests/Unit/CompanySettingsTest.php
David Bomba eddb9adc73
Client Settings (#2668)
* Clean up Client Show

* Working on Show Client menu action

* working on client view permissions

* Finishing up Client Statement View

* Workig on client settings

* add mix manifest

* css for client settings

* Client Settings

* Working on Client Settings

* Implement StartupCheck and static seeders

* Implement cached statics in view composers

* Working on client settings

* Payment Terms

* Working on Payment Terms View Composer

* Payment Terms builder

* Client Settings

* refactor companies table

* Refactor for company settings, move settings to json

* Set object cast on settings column of Company table

* Fixes for refactor of companies and clients table

* Test

* Client Settings Datamapper

* Client Settings

* Default client language

* Client Settings

* Working on client settings options

* Client Settings

* Settings Json serialization/deserialization handling
2019-02-17 21:34:46 +11:00

59 lines
874 B
PHP

<?php
namespace Tests\Unit;
use App\DataMapper\CompanySettings;
use Tests\TestCase;
/**
* @test
* @covers App\DataMapper\CompanySettings
*/
class CompanySettingsTest extends TestCase
{
public function setUp()
{
parent::setUp();
$this->company_settings = CompanySettings::defaults();
}
public function testTimezoneId()
{
$this->assertEquals($this->company_settings->timezone_id, 15);
}
public function testCurrencyId()
{
$this->assertEquals($this->company_settings->currency_id, 1);
}
public function testLanguageId()
{
$this->assertEquals($this->company_settings->language_id, 1);
}
public function testPropertyIsNotset()
{
$this->assertFalse(isset($this->company_settings->custom_label1));
}
public function testPropertyIsSet()
{
$this->assertTrue(isset($this->company_settings->currency_id));
}
}