Skip to content

Instantly share code, notes, and snippets.

@metarsit
Created November 17, 2022 00:20
Show Gist options
  • Select an option

  • Save metarsit/c0b6b4a34e1a61a47505c3f62194aea5 to your computer and use it in GitHub Desktop.

Select an option

Save metarsit/c0b6b4a34e1a61a47505c3f62194aea5 to your computer and use it in GitHub Desktop.
func TestEqualSingleTestCase(t *testing.T) {
t.Run("Single Test Case", func(t *testing.T) {
result := Equal(1, 1)
if result != true {
t.Fatalf("test failed: wanted %v got %v", true, result)
}
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment