From 520c903a14d1e3c1c550533b17a78de1443d6239 Mon Sep 17 00:00:00 2001 From: surtur Date: Sun, 19 Jun 2022 19:44:18 +0200 Subject: [PATCH] go: add func newValues() --- algo/algo.go | 5 +++++ algo/algo_test.go | 6 ++++++ 2 files changed, 11 insertions(+) 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()") + } +}