chore(unitproc):Rename script
[BK-2020-03.git] / unitproc / bktemp-checkFlt
index affc94f2884b265947cc518a507ac3f7d176aa6e..0a0d6e41e3b0014a8a1332a2f9e8ea332479f8ef 100644 (file)
@@ -74,6 +74,9 @@ myVar1="foo"; echo "Test 10:Should fail because floats should only contain numbe
 
 myVar1="foo"; myVar2="bar"; myVar3="baz"; echo "Test 11: Should fail because multiple arguments provided.";
 (if checkFlt "$myVar1" "$myVar2" "$myVar3"; then yell "success"; else yell "fail"; fi;) & sleep 1;
+
+myVar1=""; echo "Test 12: Should fil because empty string.";
+(if checkFlt "$myVar1"; then yell "success"; else yell "fail"; fi;) & sleep 1;
 #==END test code==
 
 # Author: Steven Baltakatei Sandoval