Skip to content

mockupcode/gunit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.