If you're using a shell that does simple substitution and the SHELL_VAR variable does not exist (or is blank), then
if test $SHELL_VAR = "yes"; then
translates to
if test = "yes"; then
which will almost certainly generate an error.
However,
if test x$SHELL_VAR = xyes; then
would become
if test x = xyes; then
which isn't an error.
I usually prefer
if test "$SHELL_VAR" = "yes"; then
since it still looks like a string comparison without the "x" added and, if SHELL_VAR doesn't exist, translates to
if test "" = "yes"; then
which is still valid.
Your case of
if test "x$SHELL_VAR" = "xyes"; then
seems a bit redundant since it has both the quotes and the "x" but maybe that's needed for the shell you use.
The other reason that no-one else has yet mentioned is in relation to option processing. If you write:
if [ "$1" = "abc" ]; then ...
and $1 has the value '-n', the syntax of the test command is ambiguous; it is not clear what you were testing. The 'x' at the front prevents a leading dash from causing trouble.