stat: Improve documentation and test for Moment (#248)

This commit is contained in:
Brendan Tracey
2017-09-29 22:27:21 -06:00
committed by GitHub
parent 1f58387cb6
commit 3a687b33d4
2 changed files with 7 additions and 2 deletions

View File

@@ -1178,6 +1178,9 @@ func TestMoment(t *testing.T) {
if !Panics(func() { Moment(1, make([]float64, 3), make([]float64, 2)) }) {
t.Errorf("Moment did not panic with x, weights length mismatch")
}
if !Panics(func() { Moment(1, make([]float64, 2), make([]float64, 3)) }) {
t.Errorf("Moment did not panic with x, weights length mismatch")
}
}
func TestMomentAbout(t *testing.T) {