-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyTests.java
122 lines (91 loc) · 1.38 KB
/
myTests.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
// import java.io.ByteArrayInputStream;
// import java.io.InputStream;
// import org.junit.*;
// public class myTests {
// @Test
// public void testWithUserInput(){
// String input = "T";
// InputStream in = new ByteArrayInputStream(input.getBytes());
// System.setIn(in);
// }
// }
// Simple choice 1 inclusive
// User input:
// 1
// 5
// 23
// output:
// The following primes in the range from 5 to 23 are:
// 5,
// 7,
// 11,
// 13,
// 17,
// 19,
// 23,
// Simple choice 2
// User input:
// 2
// 5
// 23
// output:
// The first 23 primes starting from 5 are:
// 5,
// 7,
// 11,
// 13,
// 17,
// 19,
// 23,
// 29,
// 31,
// 37,
// 41,
// 43,
// 47,
// 53,
// 59,
// 61,
// 67,
// 71,
// 73,
// 79,
// 83,
// 89,
// 97,
// Invalid Choice then choice 1
// User input:
// one
// 1
// 5
// 23
// output:
// invalid choice - please try again
// The following primes in the range from 5 to 23 are:
// 5,
// 7,
// 11,
// 13,
// 17,
// 19,
// 23,
// Valid choice 1 invalid min and max
// User input:
// 1
// -5
// -5
// output:
// invalid input min set to 2
// invalid input max set to min
// The following primes in the range from 2 to 2 are:
// 2,
// Choice 2 invalid start/amount
// User input:
// 2
// -5
// W
// output:
// Start point set to 2.
// Amount set to 1.
// The first 1 primes starting from 2 are:
// 2,