mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 05:27:29 -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
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.4 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\Feature\Account;
 | |
| 
 | |
| use App\DataMapper\ClientSettings;
 | |
| use App\DataMapper\CompanySettings;
 | |
| use App\Http\Livewire\CreditsTable;
 | |
| use App\Models\Account;
 | |
| use App\Models\Client;
 | |
| use App\Models\ClientContact;
 | |
| use App\Models\Company;
 | |
| use App\Models\Credit;
 | |
| use App\Models\User;
 | |
| use App\Utils\Traits\AppSetup;
 | |
| use Faker\Factory;
 | |
| use Illuminate\Foundation\Testing\DatabaseTransactions;
 | |
| use Illuminate\Support\Facades\Cache;
 | |
| use Livewire\Livewire;
 | |
| use Tests\MockAccountData;
 | |
| use Tests\TestCase;
 | |
| 
 | |
| class AccountEmailQuotaTest extends TestCase
 | |
| {
 | |
|     use DatabaseTransactions;
 | |
|     use AppSetup;
 | |
|     use MockAccountData;
 | |
| 
 | |
|     protected function setUp(): void
 | |
|     {
 | |
|         parent::setUp();
 | |
| 
 | |
|         $this->faker = Factory::create();
 | |
|         $this->buildCache(true);
 | |
|         $this->makeTestData();
 | |
|     }
 | |
| 
 | |
|     public function testQuotaValidRule()
 | |
|     {
 | |
|         Cache::increment($this->account->key);
 | |
| 
 | |
|         $this->assertFalse($this->account->emailQuotaExceeded());
 | |
|     }
 | |
| 
 | |
|     public function testQuotaInValidRule()
 | |
|     {
 | |
|         Cache::increment($this->account->key, 3000);
 | |
| 
 | |
|         $this->assertTrue($this->account->emailQuotaExceeded());
 | |
|     }
 | |
| }
 |