package main import ( "testing" "github.com/stretchr/testify/assert" ) func TestReverse(t *testing.T) { //t.Skip("skipping test") input := "eightwone3" expected := "3enowthgie" t.Run("Should reverse the string", func(t *testing.T) { assert.Equal(t, expected, reverse(input)) }) }