You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
439 B
22 lines
439 B
package income |
|
|
|
import ( |
|
"context" |
|
"testing" |
|
|
|
. "github.com/smartystreets/goconvey/convey" |
|
) |
|
|
|
func Test_AvChargeRatio(t *testing.T) { |
|
Convey("AvChargeRatio", t, func() { |
|
_, _, err := d.ArchiveChargeRatio(context.Background(), 0, 2000) |
|
So(err, ShouldBeNil) |
|
}) |
|
} |
|
|
|
func Test_UpChargeRatio(t *testing.T) { |
|
Convey("UpChargeRatio", t, func() { |
|
_, _, err := d.UpChargeRatio(context.Background(), 0, 2000) |
|
So(err, ShouldBeNil) |
|
}) |
|
}
|
|
|