Merge pull request #229 from xqliu/test/add-ut-infrastructure

test: Add minimal UT infrastructure and fix Issue #227
This commit is contained in:
SkywalkerJi
2025-11-04 00:28:34 +09:00
committed by GitHub
11 changed files with 3769 additions and 13 deletions

9
config/database_test.go Normal file
View File

@@ -0,0 +1,9 @@
package config
import "testing"
func TestExample(t *testing.T) {
if 1+1 != 2 {
t.Error("Math is broken")
}
}