Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.04 KB

README.md

File metadata and controls

30 lines (22 loc) · 1.04 KB

GUnit GoDoc License Build Status Coverage Status

Assertion library for golang!

Getting started

To get the package, execute:

go get github.com/mockupcode/gunit 

To import this package, add the following line to your code:

import "github.com/mockupcode/gunit/assert"

And just start using it.

import (
	"testing"

	"github.com/mockupcode/gunit/assert"
)

func TestAssertion(t *testing.T){
	assert := assert.GetAssertion(t)
	assert.Equal("string","string")
}

License

GUnit is a free software and may be used under the terms specified in the LICENSE file.