# gin-demo **Repository Path**: sharpX1/gin-demo ## Basic Information - **Project Name**: gin-demo - **Description**: gin-demo - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-03-22 - **Last Updated**: 2025-05-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Gin Demo ## 测试用例使用规范 ``` 1. 文件名必须 _test.go 结尾 2. 测试函数必须以 Test 开头 3. 测试函数必须只包含一个断言 ``` ## 使用go mod vendor ``` go mod vendor 将依赖包下载到vendor目录下 ```