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.
|
package strategy
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestCashFactoryContext_GetCash(t *testing.T) {
|
|
var data = &CashFactoryStrategyContext{d: 3}
|
|
data.GetCash()
|
|
result := data.GetResult(500)
|
|
t.Log(result)
|
|
}
|