@@ -29,7 +29,7 @@ Subscription evenNumbers = values
2929 );
3030```
3131
32- Output
32+ [ Output] ( /tests/java/itrx/chapter2/inspection/AllExample.java )
3333```
3434true
3535Completed
@@ -55,7 +55,7 @@ Subscription subscription2 = values
5555 );
5656```
5757
58- Output
58+ [ Output] ( /tests/java/itrx/chapter2/inspection/AllExample.java )
5959```
60600
61611
@@ -85,7 +85,7 @@ Subscription subscription = values
8585 );
8686```
8787
88- Output
88+ [ Output] ( /tests/java/itrx/chapter2/inspection/AllExample.java )
8989```
9090Error: java.lang.Exception
9191```
@@ -108,7 +108,7 @@ Subscription subscription = values
108108 );
109109```
110110
111- Output
111+ [ Output] ( /tests/java/itrx/chapter2/inspection/AllExample.java )
112112```
113113false
114114Completed
@@ -132,7 +132,7 @@ Subscription subscription = values
132132 );
133133```
134134
135- Output
135+ [ Output] ( /tests/java/itrx/chapter2/inspection/ExistsExample.java )
136136```
137137false
138138Completed
@@ -142,7 +142,7 @@ Here our range didn't go high enough for the `i > 2` condition to succeed. If we
142142``` java
143143Observable<Integer > values = Observable . range(0 , 4 );
144144```
145- We will get a successful result
145+ [ We will get a successful result] ( /tests/java/itrx/chapter2/inspection/ExistsExample.java )
146146```
147147true
148148Completed
@@ -166,7 +166,7 @@ Subscription subscription = values
166166 );
167167```
168168
169- Output
169+ [ Output] ( /tests/java/itrx/chapter2/inspection/IsEmptyExample.java )
170170```
171171false
172172Completed
@@ -192,7 +192,7 @@ Subscription subscription = values
192192 );
193193```
194194
195- Output
195+ [ Output] ( /tests/java/itrx/chapter2/inspection/ContainsExample.java )
196196```
197197true
198198Completed
@@ -218,7 +218,7 @@ Subscription subscription = values
218218 );
219219```
220220
221- Output
221+ [ Output] ( /tests/java/itrx/chapter2/inspection/DefaultIfEmptyExample.java )
222222```
2232232
224224Completed
@@ -261,7 +261,7 @@ Subscription subscription = values
261261 );
262262```
263263
264- Output
264+ [ Output] ( /tests/java/itrx/chapter2/inspection/ElementAtExample.java )
265265```
266266102
267267Completed
@@ -281,7 +281,7 @@ Subscription subscription = values
281281 );
282282```
283283
284- Output
284+ [ Output] ( /tests/java/itrx/chapter2/inspection/ElementAtExample.java )
285285```
2862860
287287Completed
@@ -304,7 +304,7 @@ Observable.sequenceEqual(strings, ints, (s,i) -> s.equals(i.toString()))
304304 );
305305```
306306
307- Output
307+ [ Output] ( /tests/java/itrx/chapter2/inspection/SequenceEqualExample.java )
308308```
309309true
310310Completed
@@ -329,7 +329,7 @@ Observable.sequenceEqual(values, values)
329329 );
330330```
331331
332- Output
332+ [ Output] ( /tests/java/itrx/chapter2/inspection/SequenceEqualExample.java )
333333```
334334Error: java.lang.Exception
335335```
0 commit comments