You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cls/internal/domain/price/entity_test.go

10 lines
150 B
Go

package price
import "testing"
func TestGetFinalAmount(t *testing.T) {
p := &Price{Amount: 11, Discount: 0.7}
v := p.GetFinalAmount()
t.Log(v)
}