forked from vrajroham/laravel-bitpay
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added tests and actions to conform with baseline/platform changes
- Loading branch information
1 parent
33150c0
commit 1994a89
Showing
3 changed files
with
49 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
|
||
namespace Vrajroham\LaravelBitpay\Tests; | ||
|
||
use BitPaySDK\Model\Invoice\Refund; | ||
use PHPUnit\Framework\TestCase; | ||
use Vrajroham\LaravelBitpay\LaravelBitpay; | ||
|
||
|
||
class LaravelBitpayRefundTest extends TestCase | ||
{ | ||
/** @test */ | ||
public function isInstanceOfRefund() | ||
{ | ||
$this->assertEquals(true, LaravelBitpay::Refund() instanceof Refund); | ||
} | ||
} |