add_test.go 244 B

123456789101112131415161718192021
  1. package simplemath
  2. import (
  3. "testing"
  4. )
  5. func TestAdd(t *testing.T) {
  6. v:=Add(3,5)
  7. if v!=8{
  8. t.Errorf("计算错误")
  9. }else {
  10. println("正确啦")
  11. }
  12. }
  13. func TestSqrt(t *testing.T) {
  14. v := Sqrt(16.0)
  15. if v != 4 {
  16. t.Errorf("error")
  17. }
  18. }