diff --git a/algo/algo.go b/algo/algo.go index fe92778..ca1a3b3 100644 --- a/algo/algo.go +++ b/algo/algo.go @@ -25,3 +25,8 @@ func DoStochasticHillClimbing(wg *sync.WaitGroup) { printSHC("starting...") } + +func newValues() *Values { + var v Values + return &v +} diff --git a/algo/algo_test.go b/algo/algo_test.go index 2686565..188ad51 100644 --- a/algo/algo_test.go +++ b/algo/algo_test.go @@ -25,3 +25,9 @@ func TestDoSHCExec(t *testing.T) { wg.Wait() } + +func TestNewValues(t *testing.T) { + if v := newValues(); v == nil { + t.Error("failed to get values from newValues()") + } +}