With for and IFS:
#!/bin/bash
IFS=$'\n' # make newlines the only separator
set -f # disable globbing
for i in $(cat < "$1"); do
echo "tester: $i"
done
Or with read (no more cat):
#!/bin/bash
while IFS= read -r line; do
echo "tester: $line"
done < "$1"