mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 12:19:28 +00:00
39 lines
1.1 KiB
PHP
39 lines
1.1 KiB
PHP
<?php
|
|
|
|
require_once "application/libraries/vertragsbestandteil/gui/GUIVertragsbestandteilFunktion.php";
|
|
require_once "application/libraries/vertragsbestandteil/gui/FormData.php";
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class GUIVertragsbestandteilFunktionTest extends TestCase
|
|
{
|
|
|
|
public function setUp()
|
|
{
|
|
error_reporting(E_ALL & ~E_STRICT & ~E_DEPRECATED);
|
|
}
|
|
|
|
public function testMapJSON_01()
|
|
{
|
|
$jsondata = file_get_contents('./system/UnitTests/vertragsbestandteil/gui/funktion01.json');
|
|
$decoded = json_decode($jsondata, true);
|
|
$formDataMapper = new FormData();
|
|
$formDataMapper->mapJSON($decoded);
|
|
// VBS
|
|
$vbs = $formDataMapper->getVbs();
|
|
$this->assertNotEmpty($vbs);
|
|
$this->assertNotEmpty($vbs['fc5f4ab8-4652-40e4-9ac3-e76bbf7310af']);
|
|
$vbsMapper = new GUIVertragsbestandteilFunktion();
|
|
$vbsMapper->mapJSON($vbs['fc5f4ab8-4652-40e4-9ac3-e76bbf7310af']);
|
|
$vbsData=$vbsMapper->getData();
|
|
$this->assertNotEmpty($vbsData['funktion']);
|
|
$this->assertEquals('Leitung', $vbsData['funktion']);
|
|
// GBS
|
|
$this->assertEmpty($vbsMapper->getGbs());
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} |