All public logs

Jump to navigation Jump to search

Combined display of all available logs of NovaOrdis Knowledge Base. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 00:47, 12 March 2024 Ovidiu talk contribs created page Testify Assertions (Created page with "=Internal= * Testify =Overview= =Failing the Test= ==Failing a Test from a Goroutine== <syntaxhighlight lang='go'> package yours import ( "testing" tassert "github.com/stretchr/testify/assert" ) func TestSomething(t *testing.T) { assert := tassert.New(t) // assert equality assert.Equal(123, 123, "they should be equal") // assert inequality assert.NotEqual(123, 456, "they should not be equal") // assert f...")