mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
36 lines
747 B
PHP
36 lines
747 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());
|
|
}
|
|
} |