24 lines
463 B
Go
24 lines
463 B
Go
// Copyright (c) 2012, Matt T. Proud
|
|
// All rights reserved.
|
|
//
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// maths_test.go provides a test suite for all tests in the maths package
|
|
// hierarchy. It employs the gocheck framework for test scaffolding.
|
|
|
|
package maths
|
|
|
|
import (
|
|
. "launchpad.net/gocheck"
|
|
"testing"
|
|
)
|
|
|
|
type S struct{}
|
|
|
|
var _ = Suite(&S{})
|
|
|
|
func TestMaths(t *testing.T) {
|
|
TestingT(t)
|
|
}
|