thread-master/apps/backend/internal/domain/const_test.go

10 lines
201 B
Go
Raw Permalink Normal View History

2026-07-10 12:54:45 +00:00
package domain
import "testing"
func TestSuccessCode_Is102000(t *testing.T) {
if SuccessCode != 102000 {
t.Fatalf("SuccessCode=%d want 102000 (migrated from stand-alone 10200)", SuccessCode)
}
}