Categorygithub.com/olaven/gotest
repositorypackage
0.1.1
Repository: https://github.com/olaven/gotest.git
Documentation: pkg.go.dev

# README

gotest

I have written this while familiarizing myself with go. It is not a serious project and should not be treated as such. With that out of the way..

Usage

import (
    "testing", 
    "github.com/olaven/gotest"
)

func TestGotest(t *testing.T) {

    gotest.Test(t).
		Equals(2, 2).
		Equals("a", "a").
		NotEquals(1, 2).
		NotEquals("a", "b")
}