2019-09-09 13:05:53 +02:00
|
|
|
<?php
|
2020-09-14 13:11:46 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-09-14 13:11:46 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-09-09 13:05:53 +02:00
|
|
|
namespace Tests\Unit;
|
|
|
|
|
|
|
|
use App\DataMapper\ClientSettings;
|
|
|
|
use App\DataMapper\CompanySettings;
|
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
class GroupTest extends TestCase
|
|
|
|
{
|
|
|
|
public function setUp() :void
|
|
|
|
{
|
2020-03-21 06:37:30 +01:00
|
|
|
parent::setUp();
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
$this->settings = ClientSettings::buildClientSettings(CompanySettings::defaults(), ClientSettings::defaults());
|
|
|
|
}
|
2019-09-09 13:05:53 +02:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
public function testGroupsPropertiesExistsResponses()
|
|
|
|
{
|
2020-11-04 08:50:27 +01:00
|
|
|
$this->assertTrue(property_exists($this->settings, 'timezone_id'));
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2019-09-09 13:05:53 +02:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
public function testPropertyValueAccessors()
|
|
|
|
{
|
|
|
|
$this->settings->translations = (object) ['hello' => 'world'];
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
$this->assertEquals('world', $this->settings->translations->hello);
|
|
|
|
}
|
2019-09-09 13:05:53 +02:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
public function testPropertyIsSet()
|
|
|
|
{
|
|
|
|
$this->assertFalse(isset($this->settings->translations->nope));
|
|
|
|
}
|
|
|
|
}
|