mirror of
https://github.com/anthonyaxenov/atol-online.git
synced 2024-11-15 20:53:24 +00:00
41 lines
664 B
PHP
41 lines
664 B
PHP
|
<?php
|
||
|
/*
|
||
|
* Copyright (c) 2020-2021 Антон Аксенов (Anthony Axenov)
|
||
|
*
|
||
|
* This code is licensed under MIT.
|
||
|
* Этот код распространяется по лицензии MIT.
|
||
|
* https://github.com/anthonyaxenov/atol-online/blob/master/LICENSE
|
||
|
*/
|
||
|
|
||
|
namespace AtolOnline\Tests;
|
||
|
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
|
||
|
class KktMonitorTest extends TestCase
|
||
|
{
|
||
|
|
||
|
public function testSetToken()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function testGetResponse()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function testSetLogin()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function testAuth()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function testGetToken()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function testSetPassword()
|
||
|
{
|
||
|
}
|
||
|
}
|