go語言 功能測試和效能測試的樣本

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。F:./src
└─hello
        hello.go

        hello_test.go


hello.go

=========

package hello

import "fmt"
func Add(a, b int) (result int) {
    return a + b
}
func main() {
    fmt.Println("Hello, world.  你好,世界!")
    c := Add(1, 2)
    fmt.Println("c=", c)
}

hello_test.go

package hello

import (
    "fmt"
    "testing"
    "time"
)
func TestAdd1(t *testing.T) {
    fmt.Println("進行Add測試")
    r := Add(1, 2)
    if r != 2 { //  這裡本該是3,故意改成2 測試錯誤情境
        t.Errorf("Add(1, 2) failed. Got %d, expected 3.", r)
    }
    fmt.Println("其他測試測試") //添加其他測試
}
func BenchmarkAdd1(b *testing.B) {
    fmt.Println("進行Add效能測試")
    b.StopTimer()  // 暫停計時器
    time.Sleep(3)  // 一個耗時較長的準備工作,比如讀檔案
    b.StartTimer() // 開啟計時器,之前的準備時間未計入總花費時間內
    for i := 0; i < b.N; i++ {
        Add(1, 2)
    }
   fmt.Println("其他測試測試") //添加其他測試
}
可以直接在liteIDE下直接用菜單上的來編譯運行。
下面是命令列的形式

c:/go/bin/go.exe test [F:/golang/test/src/hello]

c:/go/bin/go.exe test -test.bench=.* [F:/golang/test/src/hello]


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.