Files
gonum/unit/frequency_test.go
2019-11-19 19:53:32 +10:30

47 lines
1.3 KiB
Go

// Code generated by "go generate gonum.org/v1/gonum/unit; DO NOT EDIT.
// Copyright ©2019 The Gonum Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package unit
import (
"fmt"
"testing"
)
func TestFrequency(t *testing.T) {
for _, value := range []float64{-1, 0, 1} {
var got Frequency
err := got.From(Frequency(value).Unit())
if err != nil {
t.Errorf("unexpected error for %T conversion: %v", got, err)
}
if got != Frequency(value) {
t.Errorf("unexpected result from round trip of %T(%v): got: %v want: %v", got, float64(value), got, value)
}
}
}
func TestFrequencyFormat(t *testing.T) {
for _, test := range []struct {
value Frequency
format string
want string
}{
{1.23456789, "%v", "1.23456789 Hz"},
{1.23456789, "%.1v", "1 Hz"},
{1.23456789, "%20.1v", " 1 Hz"},
{1.23456789, "%20v", " 1.23456789 Hz"},
{1.23456789, "%1v", "1.23456789 Hz"},
{1.23456789, "%#v", "unit.Frequency(1.23456789)"},
{1.23456789, "%s", "%!s(unit.Frequency=1.23456789 Hz)"},
} {
got := fmt.Sprintf(test.format, test.value)
if got != test.want {
t.Errorf("Format %q %v: got: %q want: %q", test.format, float64(test.value), got, test.want)
}
}
}