91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP中PHPUnit的用法

發布時間:2021-09-04 15:13:24 來源:億速云 閱讀:152 作者:chen 欄目:編程語言

這篇文章主要講解了“PHP中PHPUnit的用法”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“PHP中PHPUnit的用法”吧!

1、markTestSkipped和markTestIncomplete

在PHPUnit中,有兩個有用的方法markTestSkipped和markTestIncomplete。它們能允許你編寫的單元測試中不單是只有通過和失敗兩種結果。markTestSkipped能讓PHPUnit不去執行某個已經編寫好的測試方法。舉個例子說明,比如下面的程序:

<?php  public function testThisMightHaveADb()  {    $myObject->createObject();    try {      $db = new Database();      $this->assertTrue($db->rowExists());    } catch (DatabseException $e) {      $this->markTestSkipped('This test was skipped because there was a database problem');    }  }  ?>

在上面的程序中,是一個連接數據庫后,判斷數據是否存在的測試方法,但如果考慮數據庫的連接異常的話,則應該在拋出異常時,使用markTestSkipped指出該測試方法應該是被忽略的,因為出現了異常,而注意的時,此時有可能你寫的代碼是正確的,只不過是出現了異常而已,這樣PHPUnit在輸出時就不會只是簡單的輸出fail。

而markTestIncomplete也有點類似,但有點不同的是,它是當開發者在編寫一個未完成的測試方法時使用的,標記出某個測試方法還沒編寫完成,同樣測試結果也不會是fail,只是告訴PHPUnit這個測試方法還沒編寫完成而已,例子如下:

<?php  public function testAreNotEnoughHours()  {    $this->markTestIncomplete("There aren't enough hours in the day to have my tests go green");    $trueVariable = true;    $this->assertTrue($trueVariable);  }  ?>

2、更深入了解PHPUnit中的斷言

在上一篇文章中,已經基本講解了一些基本的PHPUnit中的斷言的使用,這里以一個例子,下面是一個類的代碼:

<?php  class Testable  {    public $trueProperty = true;    public $resetMe = true;    public $testArray = array(      'first key' => 1,      'second key' => 2    );    private $testString = "I do love me some strings";    public function __construct()    {    }    public function addValues($valueOne,$valueTwo) {      return $valueOne+$valueTwo;    }    public function getTestString()    {      return $this->testString;    }  }  ?>

我們編寫的單元測試代碼初步的框架如下:

<?php  class TestableTest extends PHPUnit_Framework_TestCase  {    private $_testable = null;    public function setUp()    {      $this->_testable = new Testable();    }    public function tearDown()    {      $this->_testable = null;    }    /** test methods will go here */ }  ?>

在上一篇文章中,已經介紹了setUp方法和tearDown方法,這里的setUp方法中,建立了Testable()實例并保存在變量$_testable中,而在tearDown方法中,銷毀了該對象。

接下來,開始編寫一些斷言去測試,首先看assertTrue和assertFalase:

<?php public function testTruePropertyIsTrue()  {    $this->assertTrue($this->_testable->trueProperty,"trueProperty isn't true");  }  public function testTruePropertyIsFalse()  {    $this->assertFalse($this->_testable->trueProperty, "trueProperty isn't false");  }  ?>

在上一篇文章中已經介紹過assertTrue和assertFalse了,這里留意一下其中的第二個參數,其含義是,當該斷言的測試不通過時,自定義的顯示信息。比如在這個測試方法中,當trueProperty不為真值時,將顯示“trueProperty isn't true”的信息。

接下來再看下在數值方面上PHPUnit的斷言使用實例:

<?php  public function testValueEquals()  {    $valueOne = 4;    $valueTwo = 2;    $this->assertEquals($this->_testable->addValues($valueOne,$valueTwo),6);  }  public function testValueGreaterThan()  {    $valueOne = 4;    $valueTwo = 2;    $this->assertGreaterThan($valueTwo,$valueOne);  }  public function testLessThanOrEqual()  {    $valueOne = 4;    $valueTwo = 2;    $this->assertLessThanOrEqual($valueTwo,$valueOne);  }  public function testAreObjectsEqual()  {    $testTwo = new Testable();    $this->_testable->resetMe = false;    $this->assertEquals($this->_testable,$testTwo);  }  ?>

其中,assertEquals為判斷是否相等,assertGreaterThan為判斷是否大于,assertLessThanOrEqual判斷是否小于或等于,而assertEquals這里要注意一下,它還可以用來判斷兩個對象是否相等,比如這里就判斷了$testTwo這個Testable類的實例是否和新設置的resetMe這個對象相等。

除了在數值方面的斷言外,在字符方面還有一些很多斷言的功能,看下面的代碼:

<?php public function testStringEnding()  {    $testString = $this->_testable->getTestString();    $this->assertStringEndsWith('frood',$testString);  }  public function testStringStarts()  {    $testString = $this->_testable->getTestString();    $this->assertStringStartsWith('hoopy',$testString);  }  public function testEqualFileContents()  {    $this->assertStringEqualsFile('/path/to/textfile.txt','foo');  }  public function testDoesStringMatchFormat()  {    $testString = $this->_testable->getTestString();    $this->assertStringMatchesFormat('%s',$testString);  }  ?>

其中, assertStringStartsWith斷言是判斷字符串是否以指定的字符串開頭,assertStringEndsWith斷言判斷字符串是否以指定的字符串結尾。assertStringEqualsFile斷言判斷給定的文件中是否含有指定的字符,比如這里就判斷textfile.txt這個文件中是否包含字符串foo。

而assertStringMatchesFormat可以讓用戶指定匹配的模式去判斷一個字符串是否符合要求,如 $this->assertStringMatchesFormat('%s',$testString);

這里則判斷$testString是否是字符串類型,具體的可以參考PHPUnit手冊。

再來看如下的代碼:

<?php public function testStringIsNotNull()  {    $notANull = “i'm not a null!”;    $this->assertNull($notANull);  }  public function testStringIsSame()  {    $numberAsString = '1234';    $this->assertSame(1234,$numberAsString);  }  ?>

其中assertNull判斷某個變量是否為null,而assertSame則嚴格判斷兩個變量是否同一個類型,盡管在PHP中是弱類型語言,但這里通過assertSame還是能判斷出$numberAsString為字符串類型,跟期望的1234數字類型不匹配,所以測試不能通過。

***我們來看一下平常可能不大常用的斷言,但又可能對你的單元測試工作十分有幫助的,先看代碼如下:

<?php public function testArrayKeyExists()  {      $this->assertArrayHasKey('first key',$this->_testable->testArray);  }  public function testAttributeExists()  {      $this->assertClassHasAttribute('resetMe',get_class($this->_testable));  }  public function testFileIsReal()  {      $this->assertFileExists('/path/to/file.txt');  }  public function testIsInstance()  {      $this->assertInstanceOf('OtherClass',$this->_testable);  }  <?php public function testDoesMatchRegex()  {    $testString = $this->_testable->getTestString();    $this->assertRegExp('/[a-z]+/',$testString);  }  ?>

代碼中***個斷言assertArrayHasKey,是用來檢查一個數組中是否每個鍵值都是存在的,比如我們的數組中,“firstkey”這個值是有鍵1與其對應的,所以測試能通過。而assertClassHasAttribute則能判斷某個類是否有相應的屬性,這個例子中測試也能通過;

而assertFileExists則判斷在本地文件系統中是否存在指定的文件。而assertInstanceOf則判斷某個你正在創建的對象是否為某個類的實例。assertRegExp相信大家都知道,這個是判斷某個字符串中是否與給定的正則表達式相匹配。

感謝各位的閱讀,以上就是“PHP中PHPUnit的用法”的內容了,經過本文的學習后,相信大家對PHP中PHPUnit的用法這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

湘潭市| 贵阳市| 祁阳县| 大石桥市| 上饶县| 福鼎市| 瑞金市| 武义县| 广平县| 贵港市| 鸡东县| 盐亭县| 承德县| 望城县| 千阳县| 甘南县| 崇义县| 大新县| 楚雄市| 藁城市| 江阴市| 南阳市| 仁化县| 耒阳市| 临沭县| 大田县| 连城县| 襄垣县| 吐鲁番市| 体育| 沙田区| 蓝田县| 武鸣县| 镇江市| 遵化市| 洛隆县| 固镇县| 塘沽区| 福鼎市| 渭源县| 济源市|