mirror of
https://github.com/anthonyaxenov/atol-online.git
synced 2024-11-22 23:14:47 +00:00
49 lines
765 B
PHP
49 lines
765 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 AtolClientTest extends TestCase
|
||
|
{
|
||
|
|
||
|
public function testAuth()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function testSetPassword()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function testSetTestMode()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function testGetToken()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function testSetLogin()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function testSetToken()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function testGetResponse()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function testIsTestMode()
|
||
|
{
|
||
|
}
|
||
|
}
|