tool_test.go 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. package dao
  2. import (
  3. "testing"
  4. "github.com/smartystreets/goconvey/convey"
  5. )
  6. func TestDaoDiv(t *testing.T) {
  7. convey.Convey("Div", t, func(ctx convey.C) {
  8. var (
  9. x = float64(1)
  10. y = float64(1)
  11. )
  12. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  13. p1 := Div(x, y)
  14. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  15. ctx.So(p1, convey.ShouldNotBeNil)
  16. })
  17. })
  18. })
  19. }
  20. func TestDaoMul(t *testing.T) {
  21. convey.Convey("Mul", t, func(ctx convey.C) {
  22. var (
  23. x = float64(1)
  24. y = float64(1)
  25. )
  26. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  27. p1 := Mul(x, y)
  28. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  29. ctx.So(p1, convey.ShouldNotBeNil)
  30. })
  31. })
  32. })
  33. }
  34. func TestDaoDivWithRound(t *testing.T) {
  35. convey.Convey("DivWithRound", t, func(ctx convey.C) {
  36. var (
  37. x = float64(1)
  38. y = float64(1)
  39. places = int(2)
  40. )
  41. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  42. p1 := DivWithRound(x, y, places)
  43. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  44. ctx.So(p1, convey.ShouldNotBeNil)
  45. })
  46. })
  47. })
  48. }
  49. func TestDaoMulWithRound(t *testing.T) {
  50. convey.Convey("MulWithRound", t, func(ctx convey.C) {
  51. var (
  52. x = float64(1)
  53. y = float64(1)
  54. places = int(2)
  55. )
  56. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  57. p1 := MulWithRound(x, y, places)
  58. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  59. ctx.So(p1, convey.ShouldNotBeNil)
  60. })
  61. })
  62. })
  63. }
  64. func TestDaoRound(t *testing.T) {
  65. convey.Convey("Round", t, func(ctx convey.C) {
  66. var (
  67. val = float64(1)
  68. places = int(2)
  69. )
  70. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  71. p1 := Round(val, places)
  72. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  73. ctx.So(p1, convey.ShouldNotBeNil)
  74. })
  75. })
  76. })
  77. }