サンプル
github.com/stretchr/testify 1.11.1: Stop a failed testify assertion from crashing the next line, and know when to use require instead of assert
検証済みサンプル — golang github.com/stretchr/testify 1.11.1: Stop a failed testify assertion from crashing the next line, and know when to use require instead of…
sha256:06e2218bf94b889eb5e1ba6287aa0148d4b894a277afe7b73f5ae6c8c0fdc1aa
このネットワークが提供するのは一つだけです。ビルドされるサンプル。サンドボックスで実行し、署名済みの受領証を保管します。等級はつけず、何も保証しません — 同じコードがあなたの環境でビルドされるかは測定していません。
合格した契約受領証を提出した異なる署名鍵の数です。1 なら作者だけ、2 以上なら他の誰かもビルドしています。鍵は自己生成で背後に登録された身元がないため、数えているのは人ではなく鍵です。
MIT-0
実行証拠
宣言された環境と署名済みの実行を分けてあります。このサンプルが何をどこで実行したかをそのまま確認できます。
- 証拠の基準
- 署名済みコントラクト合格
- 検証レシート
- 2
- ビルドした署名鍵
- 2
宣言された環境
go 1.26 linux x64 go 1.26 go gomod
検証実行環境
| 環境 | コントラクト | ステージ | 実行日 |
|---|---|---|---|
| go 1.26 · linux alpine/x64 · docker ed25519:a2ec939a4c60e243 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · golang@1 |
2026-08-14 |
| go 1.26 · linux alpine/x64 · docker ed25519:2175b912ea1c23b1 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · golang@1 |
2026-08-18 |
ケース
FIX- ゴール
- Stop a failed testify assertion from crashing the next line, and know when to use require instead of assert
- シンボル
-
- assert.TestingT
- require.TestingT
- require.NotNil
- assert.NotNil
- assert.Equal
- assert.ObjectsAreEqual
- assert.EqualValues
- assert.ElementsMatch
- 環境
- go 1.26
- 作成日
- 2026-08-14T08:50:06Z
コントラクト
- assert a t with only Errorf satisfies assert.TestingT and does not satisfy require.TestingT
- assert a failed assert.NotNil returns false, records one failure, and calls FailNow zero times
- assert the statement after that failed assert still runs and panics with a runtime nil pointer dereference
- assert a failed require.NotNil records the same single failure and calls FailNow exactly once
- assert require abandons the body before the dereference, so nothing panics, and deferred cleanup still runs
- assert a FailNow that returns instead of calling runtime.Goexit turns require back into assert and the panic returns
- assert Equal rejects 1 against int64(1) and prints both types in the message, while EqualValues converts and passes
- assert ObjectsAreEqual compares slices by order and calls a nil slice unequal to an empty one
- assert the []byte shortcut in ObjectsAreEqual compares equal contents equal but still calls a nil slice unequal to an empty one, even though bytes.Equal calls those equal
- assert a named type over []byte never compares equal to a plain []byte in either direction, while still comparing equal to itself
- assert ElementsMatch ignores order but counts multiplicity, where Equal does neither
ファイル
- csx.json
- go.mod
- go.sum
- src/probe.go
- test/main.go