invoiceninja/tests/Unit/GroupTest.php

47 lines
1.1 KiB
PHP
Raw Permalink Normal View History

2019-09-09 21:05:53 +10:00
<?php
2020-09-14 21:11:46 +10: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 21:11:46 +10:00
*
* @license https://www.elastic.co/licensing/elastic-license
2020-09-14 21:11:46 +10:00
*/
2019-09-09 21:05:53 +10: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 21:05:53 +10:00
{
parent::setUp();
$this->settings = ClientSettings::buildClientSettings(CompanySettings::defaults(), ClientSettings::defaults());
}
2019-09-09 21:05:53 +10:00
public function testGroupsPropertiesExistsResponses()
{
2020-11-04 18:50:27 +11:00
$this->assertTrue(property_exists($this->settings, 'timezone_id'));
}
2019-09-09 21:05:53 +10:00
public function testPropertyValueAccessors()
{
$this->settings->translations = (object) ['hello' => 'world'];
$this->assertEquals('world', $this->settings->translations->hello);
}
2019-09-09 21:05:53 +10:00
public function testPropertyIsSet()
{
$this->assertFalse(isset($this->settings->translations->nope));
}
}