You can execute it without. / using:
sh testfile
or
sh /path/to/file/testfile
Edit
If you want to execute a program directly using a command, then you can define an alias:
alias execute_testfile="sh /path/to/file/testfile"
And then you will execute the program whenever you write
execute_testfile
, .
, alias ... ~/.profile ~/.bash_profile.