first commit
Some checks failed
CI/CD Pipeline / Test (push) Failing after 22m19s
CI/CD Pipeline / Security Scan (push) Failing after 5m57s
CI/CD Pipeline / Build (amd64, darwin) (push) Has been skipped
CI/CD Pipeline / Build (amd64, linux) (push) Has been skipped
CI/CD Pipeline / Build (amd64, windows) (push) Has been skipped
CI/CD Pipeline / Build (arm64, darwin) (push) Has been skipped
CI/CD Pipeline / Build (arm64, linux) (push) Has been skipped
CI/CD Pipeline / Build Docker Image (push) Has been skipped
CI/CD Pipeline / Create Release (push) Has been skipped

This commit is contained in:
Rogee
2025-09-28 10:05:07 +08:00
commit 7fcabe0225
481 changed files with 125127 additions and 0 deletions

18
test_simple.go Normal file
View File

@@ -0,0 +1,18 @@
package main
import (
"testing"
. "github.com/smartystreets/goconvey/convey"
)
// TestSimpleFailing 测试TDD失败原则
func TestSimpleFailing(t *testing.T) {
Convey("Given a failing test", t, func() {
Convey("When running the test", func() {
Convey("Then it should fail", func() {
So(true, ShouldBeFalse) // 故意失败
})
})
})
}