math-optim/algo/stochasticHillClimbing_test.go
surtur ab14e97f16
All checks were successful
continuous-integration/drone/push Build is passing
go: add RandomSearch,SHC algos
2022-06-14 22:34:52 +02:00

22 lines
516 B
Go

// Copyright 2022 wanderer <a_mirre at utb dot cz>
// SPDX-License-Identifier: GPL-3.0-or-later
package algo
import "testing"
func TestFmtSHCOut(t *testing.T) {
want := " ***  stochastic hill climbing: oh what a mountain that is!"
got := fmtSHCOut("oh what a mountain that is!")
if want != got {
t.Errorf("strings do not equal, want: %q, got: %q", want, got)
}
}
func TestPrintSHC(t *testing.T) {
if err := printSHC("whatever"); err != nil {
t.Errorf("error while printing to stderr: %q", err)
}
}