mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-14 07:02:34 +01:00
26 lines
313 B
PHP
26 lines
313 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Unit\Unit;
|
||
|
|
||
|
use Tests\Unit\TestCase;
|
||
|
|
||
|
class PaymentGatewayPayPalTest extends TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @var \UnitTester
|
||
|
*/
|
||
|
protected $tester;
|
||
|
|
||
|
protected function _before()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
protected function _after()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function testMe()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|