mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-25 05:09:24 -04:00 
			
		
		
		
	From the [PHPUnit 8 release notes][1], the `TestCase` methods below now declare a `void` return type: - `setUpBeforeClass()` - `setUp()` - `assertPreConditions()` - `assertPostConditions()` - `tearDown()` - `tearDownAfterClass()` - `onNotSuccessfulTest()` [1]: https://phpunit.de/announcements/phpunit-8.html
		
			
				
	
	
		
			65 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Invoice Ninja (https://invoiceninja.com).
 | |
|  *
 | |
|  * @link https://github.com/invoiceninja/invoiceninja source repository
 | |
|  *
 | |
|  * @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
 | |
|  *
 | |
|  * @license https://www.elastic.co/licensing/elastic-license
 | |
|  */
 | |
| 
 | |
| namespace Tests\Integration;
 | |
| 
 | |
| use App\Models\Invoice;
 | |
| use Illuminate\Foundation\Testing\DatabaseTransactions;
 | |
| use Tests\MockAccountData;
 | |
| use Tests\TestCase;
 | |
| 
 | |
| /**
 | |
|  * @test
 | |
|  */
 | |
| class MarkInvoicePaidTest extends TestCase
 | |
| {
 | |
|     use MockAccountData;
 | |
|     use DatabaseTransactions;
 | |
| 
 | |
|     protected function setUp() :void
 | |
|     {
 | |
|         parent::setUp();
 | |
| 
 | |
|         $this->makeTestData();
 | |
|     }
 | |
| 
 | |
|     public function testClientExists()
 | |
|     {
 | |
|         $this->assertNotNull($this->client);
 | |
|     }
 | |
| 
 | |
|     public function testMarkInvoicePaidInvoice()
 | |
|     {
 | |
|         $invoice = Invoice::find($this->invoice->id);
 | |
|         $invoice_balance = $invoice->balance;
 | |
|         $client = $invoice->client;
 | |
|         $client_balance = $client->balance;
 | |
| 
 | |
|         $this->invoice->service()->markPaid();
 | |
| 
 | |
|         $invoice = Invoice::find($this->invoice->id);
 | |
|         $client = $invoice->client;
 | |
| 
 | |
|         $this->assertEquals(0.00, $invoice->balance);
 | |
| 
 | |
|         $this->assertEquals(1, count($invoice->payments));
 | |
| 
 | |
|         foreach ($invoice->payments as $payment) {
 | |
|             $this->assertEquals(round($this->invoice->amount, 2), $payment->amount);
 | |
|         }
 | |
| 
 | |
|         //events are not firing which makes this impossible to control.
 | |
| 
 | |
|         $this->assertEquals(0.00, $invoice->balance);
 | |
|         $this->assertEquals(($client_balance - $invoice_balance), $client->balance);
 | |
|     }
 | |
| }
 |