13 lines
182 B
Go
13 lines
182 B
Go
package mtpsapi
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestSimulateShopStatus(t *testing.T) {
|
|
err := api.SimulateShopStatus("1", ShopStatusAuditRejected)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|