package
0.0.0-20210318024954-d9e4b8ca2e42
Repository: https://github.com/pangpanglabs/goutils.git
Documentation: pkg.go.dev

# README

goutils/test

It is a very simple test helper.

Getting Started

import (
	"testing"
	"time"

	"github.com/pangpanglabs/goutils/test"
)

func TestXXX(t *testing.T) {
	at, err := time.Parse("2006-01-02", "2017-12-31")
	test.Ok(t, err)
	test.Equals(t, at.Year(), 2017)
	test.Assert(t, at.Month() == 12, "Month should be equals to 12")
}

# Functions

assert fails the test if the condition is false.
equals fails the test if exp is not equal to act.
ok fails the test if an err is not nil.