Extends omsorgCore with full CRUD for Facility/Contract/Order plus configurable value lists and an audit trail, and wires the omsorgapp frontend up to the new facilities, settings, and audit-log modules; includes a sidebar active-nav-item highlight. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
122 lines
2.3 KiB
PHP
122 lines
2.3 KiB
PHP
<?php
|
|
/**
|
|
* EmployeesApiTest
|
|
* PHP version 8.1
|
|
*
|
|
* @category Class
|
|
* @package OmsorgCoreClient
|
|
* @author OpenAPI Generator team
|
|
* @link https://openapi-generator.tech
|
|
*/
|
|
|
|
/**
|
|
* OmsorgCore.Api
|
|
*
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* The version of the OpenAPI document: 1.0
|
|
* Generated by: https://openapi-generator.tech
|
|
* Generator version: 7.14.0
|
|
*/
|
|
|
|
/**
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Please update the test case below to test the endpoint.
|
|
*/
|
|
|
|
namespace OmsorgCoreClient\Test\Api;
|
|
|
|
use \OmsorgCoreClient\Configuration;
|
|
use \OmsorgCoreClient\ApiException;
|
|
use \OmsorgCoreClient\ObjectSerializer;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* EmployeesApiTest Class Doc Comment
|
|
*
|
|
* @category Class
|
|
* @package OmsorgCoreClient
|
|
* @author OpenAPI Generator team
|
|
* @link https://openapi-generator.tech
|
|
*/
|
|
class EmployeesApiTest extends TestCase
|
|
{
|
|
|
|
/**
|
|
* Setup before running any test cases
|
|
*/
|
|
public static function setUpBeforeClass(): void
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Setup before running each test case
|
|
*/
|
|
public function setUp(): void
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Clean up after running each test case
|
|
*/
|
|
public function tearDown(): void
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Clean up after running all test cases
|
|
*/
|
|
public static function tearDownAfterClass(): void
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Test case for apiEmployeesGet
|
|
*
|
|
* .
|
|
*
|
|
*/
|
|
public function testApiEmployeesGet()
|
|
{
|
|
// TODO: implement
|
|
self::markTestIncomplete('Not implemented');
|
|
}
|
|
|
|
/**
|
|
* Test case for apiEmployeesIdGet
|
|
*
|
|
* .
|
|
*
|
|
*/
|
|
public function testApiEmployeesIdGet()
|
|
{
|
|
// TODO: implement
|
|
self::markTestIncomplete('Not implemented');
|
|
}
|
|
|
|
/**
|
|
* Test case for apiEmployeesIdPut
|
|
*
|
|
* .
|
|
*
|
|
*/
|
|
public function testApiEmployeesIdPut()
|
|
{
|
|
// TODO: implement
|
|
self::markTestIncomplete('Not implemented');
|
|
}
|
|
|
|
/**
|
|
* Test case for apiEmployeesPost
|
|
*
|
|
* .
|
|
*
|
|
*/
|
|
public function testApiEmployeesPost()
|
|
{
|
|
// TODO: implement
|
|
self::markTestIncomplete('Not implemented');
|
|
}
|
|
}
|