mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
d36675b15b
- Set up Elixir for asset management - CSS + JS will be handled via Elixir/Gulp in gulpfile.js - Removed outdates public/js files
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()
|
|
{
|
|
|
|
}
|
|
} |