The back-ticks in this are not wanted, unless you really have a program called 'test message' (with space in the name) that generates your desired output:
description=`"test message"` # input parameter for contain a space
The simplest way to achieve your requirement is to use double quotes around the (part of the) argument that needs to contain spaces:
description="test message"
binary=external_prog
$binary --description="$description"
You could equivalently write the last line as:
$binary "--description=$description"
This ensures that all the material in description is treated as a single argument, blanks and all.