Add synthetic fixtures and proposed policy contracts for safely demonstrating future Lariza capabilities. Assisted-by: Codex: GPT-5.6
11 lines
198 B
Go
11 lines
198 B
Go
package payment
|
|
|
|
import "testing"
|
|
|
|
func TestAuthorize(t *testing.T) {
|
|
got := Authorize(12500, "PHP")
|
|
if got != "authorized 12500 PHP" {
|
|
t.Fatalf("unexpected authorization result: %q", got)
|
|
}
|
|
}
|