Skip to content

Instantly share code, notes, and snippets.

@cyantarek
Created February 8, 2020 15:57
Show Gist options
  • Save cyantarek/801fb02c601974ce4aa12afa441e0ee3 to your computer and use it in GitHub Desktop.
Save cyantarek/801fb02c601974ce4aa12afa441e0ee3 to your computer and use it in GitHub Desktop.
package reversestring
import (
"testing"
)
func TestReverseString(t *testing.T) {
if ReverseString("") != "" {
t.Fail()
}
if ReverseString("hello") != "olleh" {
t.Fail()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment