aboutsummaryrefslogtreecommitdiff
path: root/tests/factor.test
blob: 2ec557a33ee3f37ceebc58a2297360472303f213 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash

[ -f testing.sh ] && . testing.sh

#testing "name" "command" "result" "infile" "stdin"

testing "-32" "factor -32" "-32: -1 2 2 2 2 2\n" "" ""
testing "0" "factor 0" "0: 0\n" "" ""
testing "1" "factor 1" "1: 1\n" "" ""
testing "2" "factor 2" "2: 2\n" "" ""
testing "3" "factor 3" "3: 3\n" "" ""
testing "4" "factor 4" "4: 2 2\n" "" ""
testing "10000000017" "factor 10000000017" \
        "10000000017: 3 3 3 7 7 7 1079797\n" "" ""
testing "10000000018" "factor 10000000018" \
        "10000000018: 2 131 521 73259\n" "" ""
testing "10000000019" "factor 10000000019" \
        "10000000019: 10000000019\n" "" ""

testing "3 6 from stdin" "factor" "3: 3\n6: 2 3\n" "" "3 6"
testing "stdin newline" "factor" "3: 3\n6: 2 3\n" "" "3\n6\n"