mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
25 lines
544 B
Go
25 lines
544 B
Go
|
package math_test
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
||
|
"github.com/MontFerret/ferret/pkg/stdlib/math"
|
||
|
"testing"
|
||
|
|
||
|
. "github.com/smartystreets/goconvey/convey"
|
||
|
)
|
||
|
|
||
|
func TestAcos(t *testing.T) {
|
||
|
Convey("Should return arccosine", t, func() {
|
||
|
out, err := math.Acos(context.Background(), values.NewInt(-1))
|
||
|
|
||
|
So(err, ShouldBeNil)
|
||
|
So(out, ShouldEqual, 3.141592653589793)
|
||
|
|
||
|
out, err = math.Acos(context.Background(), values.NewInt(0))
|
||
|
|
||
|
So(err, ShouldBeNil)
|
||
|
So(out, ShouldEqual, 1.5707963267948966)
|
||
|
})
|
||
|
}
|