mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 09:57:33 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
		
			748 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			748 B
		
	
	
	
		
			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\Unit;
 | |
| 
 | |
| use App\DataProviders\SMSNumbers;
 | |
| use Tests\TestCase;
 | |
| 
 | |
| /**
 | |
|  * @test
 | |
|  */
 | |
| class SmsNumberTest extends TestCase
 | |
| {
 | |
|     public function testArrayHit()
 | |
|     {
 | |
|         $this->assertTrue(SMSNumbers::hasNumber("+461614222"));
 | |
|     }
 | |
| 
 | |
|     public function testArrayMiss()
 | |
|     {
 | |
|         $this->assertFalse(SMSNumbers::hasNumber("+5485454"));
 | |
|     }
 | |
| 
 | |
|     public function testSmsArrayType()
 | |
|     {
 | |
|         $this->assertIsArray(SMSNumbers::getNumbers());
 | |
|     }
 | |
| }
 |