PHPUnit初試

来源:http://www.cnblogs.com/dragon16/archive/2016/06/17/5595176.html
-Advertisement-
Play Games

先測試了一下加減,檢查一下環境,又調用函數測試了伺服器名。 源代碼: 生成測試文件: 這裡的伺服器測試用例是手動加上去的! 執行結果: ...


先測試了一下加減,檢查一下環境,又調用函數測試了伺服器名。

源代碼:

 1 class DemoController extends \Think\Controller
 2 {
 3 
 4     /**
 5      * @assert (5, 8) == 13
 6      * @assert (16, 76) == 92
 7      * @assert (6, 16) == 32
 8      * @assert (6, 4) == 0
 9      * @assert ('abc', 1) == 2
10      * @param int $a
11      * @param int $b
12      * @return int
13      */
14     public function plus($a, $b)
15     {
16         return $a + $b;
17     }
18 
19      /**
20      * @assert (14, 8) == 6
21      * @assert (16, 6) == 10
22      * @assert (6, 4) == 0
23      * @assert ('45', 1) == 44
24      * @param int $a
25      * @param int $b
26      * @return int
27      */
28     public function subtract($a, $b)
29     {
30         return $a - $b;
31     }
32 
33     public function connectToServer($serverName = null)
34     {
35         if ($serverName == null) {
36             throw new Exception("這不是一個伺服器名");
37         }
38         $fp = fsockopen($serverName, 8080);
39         return ($fp) ? true : false;
40     }
41 
42 
43 }

生成測試文件:

  1 class DemoControllerTest extends \PHPUnit_Framework_TestCase
  2 {
  3 
  4     /**
  5      * @var DemoController
  6      */
  7     protected $object;
  8 
  9     /**
 10      * Sets up the fixture, for example, opens a network connection.
 11      * This method is called before a test is executed.
 12      */
 13     protected function setUp()
 14     {
 15         $this->object = new DemoController;
 16     }
 17 
 18     /**
 19      * Tears down the fixture, for example, closes a network connection.
 20      * This method is called after a test is executed.
 21      */
 22     protected function tearDown()
 23     {
 24         
 25     }
 26 
 27     /**
 28      * Generated from @assert (5, 8) == 13.
 29      *
 30      * @covers Home\Controller\DemoController::plus
 31      */
 32     public function testPlus()
 33     {
 34         $this->assertEquals(
 35                 13, $this->object->plus(5, 8)
 36         );
 37     }
 38 
 39     /**
 40      * Generated from @assert (16, 76) == 92.
 41      *
 42      * @covers Home\Controller\DemoController::plus
 43      */
 44     public function testPlus2()
 45     {
 46         $this->assertEquals(
 47                 92, $this->object->plus(16, 76)
 48         );
 49     }
 50 
 51     /**
 52      * Generated from @assert (6, 16) == 32.
 53      *
 54      * @covers Home\Controller\DemoController::plus
 55      */
 56     public function testPlus3()
 57     {
 58         $this->assertEquals(
 59                 32, $this->object->plus(6, 16)
 60         );
 61     }
 62 
 63     /**
 64      * Generated from @assert (6, 4) == 0.
 65      *
 66      * @covers Home\Controller\DemoController::plus
 67      */
 68     public function testPlus4()
 69     {
 70         $this->assertEquals(
 71                 0, $this->object->plus(6, 4)
 72         );
 73     }
 74 
 75     /**
 76      * Generated from @assert ('abc', 1) == 0.
 77      *
 78      * @covers Home\Controller\DemoController::plus
 79      */
 80     public function testPlus5()
 81     {
 82         $this->assertEquals(
 83                 2, $this->object->plus('abc', 1)
 84         );
 85     }
 86 
 87     /**
 88      * Generated from @assert (14, 8) == 6.
 89      *
 90      * @covers Home\Controller\DemoController::subtract
 91      */
 92     public function testSubtract()
 93     {
 94         $this->assertEquals(
 95                 6, $this->object->subtract(14, 8)
 96         );
 97     }
 98 
 99     /**
100      * Generated from @assert (16, 6) == 10.
101      *
102      * @covers Home\Controller\DemoController::subtract
103      */
104     public function testSubtract2()
105     {
106         $this->assertEquals(
107                 10, $this->object->subtract(16, 6)
108         );
109     }
110 
111     /**
112      * Generated from @assert (6, 4) == 0.
113      *
114      * @covers Home\Controller\DemoController::subtract
115      */
116     public function testSubtract3()
117     {
118         $this->assertEquals(
119                 0, $this->object->subtract(6, 4)
120         );
121     }
122 
123     /**
124      * Generated from @assert ('abc', 1) == 0.
125      *
126      * @covers Home\Controller\DemoController::subtract
127      */
128     public function testSubtract4()
129     {
130         $this->assertEquals(
131                 44, $this->object->subtract('45', 1)
132         );
133     }
134 
135     /**
136      * @covers Home\Controller\DemoController::connectToServer
137      * @todo   Implement testConnectToServer().
138      */
139     public function testConnectToServer()
140     {
141 //        // Remove the following lines when you implement this test.
142 //        $this->markTestIncomplete(
143 //                'This test has not been implemented yet.'
144 //        );
145         $serverName = 'wwwcom';
146         $this->assertTrue($this->object->connectToServer($serverName) === false);
147     }
148     public function testConnectToServer2()
149     {
150         $serverName = 'www.baidu.com';
151         $this->assertTrue($this->object->connectToServer($serverName) !== false);
152     }

這裡的伺服器測試用例是手動加上去的!

執行結果:

 1 ..FFF..F..F                                                       11 / 11 (100%)
 2 
 3 Time: 44.42 seconds, Memory: 8.75Mb
 4 
 5 There were 5 failures:
 6 
 7 1) Home\Controller\DemoControllerTest::testPlus3
 8 Failed asserting that 22 matches expected 32.
 9 
10 D:\wamp\www\wxportal\tests\Application\Home\Controller\DemoController.classTest.php:67
11 
12 2) Home\Controller\DemoControllerTest::testPlus4
13 Failed asserting that 10 matches expected 0.
14 
15 D:\wamp\www\wxportal\tests\Application\Home\Controller\DemoController.classTest.php:79
16 
17 3) Home\Controller\DemoControllerTest::testPlus5
18 Failed asserting that 1 matches expected 2.
19 
20 D:\wamp\www\wxportal\tests\Application\Home\Controller\DemoController.classTest.php:91
21 
22 4) Home\Controller\DemoControllerTest::testSubtract3
23 Failed asserting that 2 matches expected 0.
24 
25 D:\wamp\www\wxportal\tests\Application\Home\Controller\DemoController.classTest.php:127
26 
27 5) Home\Controller\DemoControllerTest::testConnectToServer2
28 Failed asserting that false is true.
29 
30 D:\wamp\www\wxportal\tests\Application\Home\Controller\DemoController.classTest.php:158
31 
32 FAILURES!
33 Tests: 11, Assertions: 11, Failures: 5.
34 完成。

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 可以轉載,禁止修改。轉載請註明作者以及原文鏈接 註:本文是從貝葉斯分類器的角度來討論判別分析,有關貝葉斯分類器的概念可參考文末延伸閱讀第1-2篇文章。至於Fisher判別分析,未來會連同PCA一同討論。 判別分析也是一種分類器,與邏輯回歸相比,它具有以下優勢: 當類別的區分度高的時候,邏輯回歸的參數 ...
  • 俗話說技多不壓身,當年苦讀《深入理解JVM》還專門整理了筆記,現在就用上了~ 筆記 http://www.cnblogs.com/syjkfind/p/3901774.html 【癥狀】 用戶操作數據導出時總會發生卡頓,後臺占記憶體的定時任務發生時也會。JVM參數就不貼了,比較普通且相對合理。 【思路 ...
  • package com.pro.dao.impl; import java.sql.Date;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.sql.SQLException;import java.sq ...
  • 自從學了c語言,就一直想做個游戲,今天將之付之行動,第一次寫的特別爛,各種bug;就不貼了。今天網上看了好幾個貪吃蛇,重新寫了一次,做出來的效果還可以。 下麵是詳細的構建過程,本節因為時間限制,先貼出比較重要的控制函數實現,並用它做一個很簡單很簡單很有趣的畫圖程式。 首先,要對貪吃蛇的結構有一個大概 ...
  • java中的單例模式都很熟悉了:簡單地說就是一個類只能有一個實例。在scala中創建單例對象非常簡單,創建類時使用object關鍵字替換class即可。因為單例類無法初始化,所以不能向它的主構造函數傳遞參數。 下麵是一個單例的示例: class Marker(val color: String) {... ...
  • 函數原型: 頭文件: 引入: 字元串由'\0'結尾,所以字元串內部不能包含任何'\0'字元('\0'的ASCII值為0),否則我們將讀不到'\0'後的字元內容。但是,非字元串內部包含零值的情況並不罕見,我們無法利於其它字元串函數來處理這類數據。所以,我們要引入記憶體操作的函數來處理。 memcpy m ...
  • (•̀ᴗ•́)و ̑̑ 單鏈表/雙向鏈表的建立/遍歷/插入/刪除實例 迴圈鏈表的概念 ...
  • 上一節,描述了服務發現、負載均衡以及服務之間的調用。到這裡,加上第二節的服務註冊,整個微服務的架構就已經搭建出來了,即功能性需求就完成了。從本節開始的記錄其實全部都是非功能性需求。 一、集群容錯 技術選型:hystrix。(就是上圖中熔斷器) 熔斷的作用: 第一個作用: 假設有兩台伺服器server ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...