factor.test 772 B

12345678910111213141516171819202122
  1. #!/bin/bash
  2. [ -f testing.sh ] && . testing.sh
  3. #testing "name" "command" "result" "infile" "stdin"
  4. toyonly testing "-32" "factor -32" "-32: -1 2 2 2 2 2\n" "" ""
  5. toyonly testing "0" "factor 0" "0: 0\n" "" ""
  6. toyonly testing "1" "factor 1" "1: 1\n" "" ""
  7. testing "2" "factor 2" "2: 2\n" "" ""
  8. testing "3" "factor 3" "3: 3\n" "" ""
  9. testing "4" "factor 4" "4: 2 2\n" "" ""
  10. testing "10000000017" "factor 10000000017" \
  11. "10000000017: 3 3 3 7 7 7 1079797\n" "" ""
  12. testing "10000000018" "factor 10000000018" \
  13. "10000000018: 2 131 521 73259\n" "" ""
  14. testing "10000000019" "factor 10000000019" \
  15. "10000000019: 10000000019\n" "" ""
  16. testing "3 6 from stdin" "factor" "3: 3\n6: 2 3\n" "" "3 6"
  17. testing "stdin newline" "factor" "3: 3\n6: 2 3\n" "" "3\n6\n"