euromedica-client/test/Model/ItemTest.php

146 lines
3.0 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* ItemTest
*
* PHP version 8.1
*
* @category Class
* @package Europharmacy\EuromedicaClient
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
/**
* Euromedica Two Web Api
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: v1
* Contact: development@europharmacy.gr
* Generated by: https://openapi-generator.tech
* Generator version: 7.20.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 model.
*/
namespace Europharmacy\EuromedicaClient\Test\Model;
use PHPUnit\Framework\TestCase;
/**
* ItemTest Class Doc Comment
*
* @category Class
* @description Η αναγνώριση του είδους γίνεται είτε από erpId είτε με barcode. Συνιστάται erpId
* @package Europharmacy\EuromedicaClient
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
class ItemTest extends TestCase
{
/**
* Setup before running any test case
*/
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 "Item"
*/
public function testItem()
{
// TODO: implement
self::markTestIncomplete('Not implemented');
}
/**
* Test attribute "product_title"
*/
public function testPropertyProductTitle()
{
// TODO: implement
self::markTestIncomplete('Not implemented');
}
/**
* Test attribute "erp_id"
*/
public function testPropertyErpId()
{
// TODO: implement
self::markTestIncomplete('Not implemented');
}
/**
* Test attribute "barcode"
*/
public function testPropertyBarcode()
{
// TODO: implement
self::markTestIncomplete('Not implemented');
}
/**
* Test attribute "qty"
*/
public function testPropertyQty()
{
// TODO: implement
self::markTestIncomplete('Not implemented');
}
/**
* Test attribute "unit_price"
*/
public function testPropertyUnitPrice()
{
// TODO: implement
self::markTestIncomplete('Not implemented');
}
/**
* Test attribute "discount_percentage"
*/
public function testPropertyDiscountPercentage()
{
// TODO: implement
self::markTestIncomplete('Not implemented');
}
/**
* Test attribute "total"
*/
public function testPropertyTotal()
{
// TODO: implement
self::markTestIncomplete('Not implemented');
}
}