1
0
mirror of synced 2024-11-22 13:06:04 +03:00
atol-online-client/tests/AtolOnlineClient/Tests/AtolOnlineTest.php

17 lines
363 B
PHP
Raw Normal View History

<?php
namespace AtolOnlineClient\Tests;
use AtolOnlineClient\AtolOnline;
use AtolOnlineClient\Configuration;
use PHPUnit\Framework\TestCase;
class AtolOnlineTest extends TestCase
{
public function testCreateConfiguration()
{
$atol = new AtolOnline();
$this->assertInstanceOf(Configuration::class, $atol->createConfiguration());
}
}