2012-05-24 22:02:44 +04:00
|
|
|
/*
|
|
|
|
Copyright (c) 2012, Matt T. Proud
|
|
|
|
All rights reserved.
|
2012-05-20 01:59:25 +04:00
|
|
|
|
2012-05-24 22:02:44 +04:00
|
|
|
Use of this source code is governed by a BSD-style
|
|
|
|
license that can be found in the LICENSE file.
|
|
|
|
*/
|
2012-05-20 01:59:25 +04:00
|
|
|
|
|
|
|
package maths
|
|
|
|
|
|
|
|
import (
|
2013-01-18 19:29:47 +04:00
|
|
|
. "github.com/matttproud/gocheck"
|
2012-05-20 01:59:25 +04:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
type S struct{}
|
|
|
|
|
|
|
|
var _ = Suite(&S{})
|
|
|
|
|
|
|
|
func TestMaths(t *testing.T) {
|
|
|
|
TestingT(t)
|
|
|
|
}
|