1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/tests/Unit/GroupTest.php

47 lines
1.1 KiB
PHP
Raw Normal View History

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
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2020-09-14 13:11:46 +02:00
*
* @license https://www.elastic.co/licensing/elastic-license
2020-09-14 13:11:46 +02:00
*/
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
{
protected function setUp() :void
2019-09-09 13:05:53 +02:00
{
parent::setUp();
$this->settings = ClientSettings::buildClientSettings(CompanySettings::defaults(), ClientSettings::defaults());
}
2019-09-09 13:05:53 +02:00
public function testGroupsPropertiesExistsResponses()
{
2020-11-04 08:50:27 +01:00
$this->assertTrue(property_exists($this->settings, 'timezone_id'));
}
2019-09-09 13:05:53 +02:00
public function testPropertyValueAccessors()
{
$this->settings->translations = (object) ['hello' => 'world'];
$this->assertEquals('world', $this->settings->translations->hello);
}
2019-09-09 13:05:53 +02:00
public function testPropertyIsSet()
{
$this->assertFalse(isset($this->settings->translations->nope));
}
}