mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -04:00
* Fixes for travis * Additional settings variables at the company and client level * Implement accessor for client settings * Currency symbol or code setter * Implement custom JS number and currency formatter * Implement VueX state management for client settings * Move settings logic into its own class * Working on client settings * client settings * Move Client Settings helper into PHP * Move translation helper into its own class * Working on Client Settings * fixes for client settings * Client setting defaults * fixes for .env * Fixes for Travis
55 lines
1.0 KiB
PHP
55 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace Tests\Unit;
|
|
|
|
use App\DataMapper\ClientSettings;
|
|
use App\DataMapper\CompanySettings;
|
|
use Tests\TestCase;
|
|
|
|
/**
|
|
* @test
|
|
* @covers App\DataMapper\ClientSettings
|
|
*/
|
|
class CompanyObjectTest extends TestCase
|
|
{
|
|
|
|
public function setUp()
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
$this->client_settings = ClientSettings::defaults();
|
|
$this->company_settings = CompanySettings::defaults();
|
|
|
|
}
|
|
|
|
|
|
public function buildClientSettings()
|
|
{
|
|
|
|
foreach($this->client_settings as $key => $value)
|
|
{
|
|
|
|
if(!isset($this->client_settings->{$key}))
|
|
$this->client_settings->{$key} = $this->company_settings->{$key};
|
|
}
|
|
|
|
|
|
return $this->client_settings;
|
|
}
|
|
|
|
|
|
public function testProperties()
|
|
{
|
|
$build_client_settings = $this->buildClientSettings();
|
|
|
|
|
|
$this->assertEquals($build_client_settings->timezone_id, 15);
|
|
$this->assertEquals($build_client_settings->currency_id, 1);
|
|
$this->assertEquals($build_client_settings->language_id, 1);
|
|
$this->assertEquals($build_client_settings->payment_terms, 7);
|
|
}
|
|
|
|
|
|
}
|