Skip to content

Commit e92899f

Browse files
author
Nikhil Bhople
committed
added more test cases for BLoC testing
1 parent f380d1e commit e92899f

File tree

5 files changed

+124
-311
lines changed

5 files changed

+124
-311
lines changed

lib/bloc/recipe/recipe_state.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class LoadedState extends RecipeState {
1414
final List<Result> recipe;
1515
final bool hasReachToEnd;
1616

17-
LoadedState({this.recipe, this.hasReachToEnd});
17+
LoadedState({@required this.recipe,@required this.hasReachToEnd});
1818

1919
@override
2020
List<Object> get props => [recipe, hasReachToEnd];

lib/repository/recipe_repository.dart

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
2+
import 'package:flutter/foundation.dart';
13
import 'package:flutterrecipeapp/constant/app_constant.dart';
24
import 'package:flutterrecipeapp/model/recipe_model.dart';
35
import 'package:flutterrecipeapp/repository/base_recipe_repository.dart';
@@ -14,7 +16,7 @@ class RecipeRepository extends BaseRecipeRepository {
1416
// if no parameter is passed in then instantiate new http client
1517

1618
@override
17-
Future<List<Result>> getRecipeList({String query, int page}) async {
19+
Future<List<Result>> getRecipeList({@required String query,@required int page}) async {
1820
final url = '$baseUrl?q=$query&p=$page';
1921
print(url);
2022
final response = await _httpClient.get(url);

pubspec.lock

+1-225
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,6 @@
11
# Generated by pub
22
# See https://dart.dev/tools/pub/glossary#lockfile
33
packages:
4-
_fe_analyzer_shared:
5-
dependency: transitive
6-
description:
7-
name: _fe_analyzer_shared
8-
url: "https://pub.dartlang.org"
9-
source: hosted
10-
version: "3.0.0"
11-
analyzer:
12-
dependency: transitive
13-
description:
14-
name: analyzer
15-
url: "https://pub.dartlang.org"
16-
source: hosted
17-
version: "0.39.8"
184
archive:
195
dependency: transitive
206
description:
@@ -43,13 +29,6 @@ packages:
4329
url: "https://pub.dartlang.org"
4430
source: hosted
4531
version: "4.0.0"
46-
bloc_test:
47-
dependency: "direct main"
48-
description:
49-
name: bloc_test
50-
url: "https://pub.dartlang.org"
51-
source: hosted
52-
version: "5.1.0"
5332
boolean_selector:
5433
dependency: transitive
5534
description:
@@ -78,27 +57,13 @@ packages:
7857
url: "https://pub.dartlang.org"
7958
source: hosted
8059
version: "2.1.1"
81-
coverage:
82-
dependency: transitive
83-
description:
84-
name: coverage
85-
url: "https://pub.dartlang.org"
86-
source: hosted
87-
version: "0.13.9"
8860
crypto:
8961
dependency: transitive
9062
description:
9163
name: crypto
9264
url: "https://pub.dartlang.org"
9365
source: hosted
9466
version: "2.1.4"
95-
csslib:
96-
dependency: transitive
97-
description:
98-
name: csslib
99-
url: "https://pub.dartlang.org"
100-
source: hosted
101-
version: "0.16.1"
10267
cupertino_icons:
10368
dependency: "direct main"
10469
description:
@@ -130,34 +95,13 @@ packages:
13095
description: flutter
13196
source: sdk
13297
version: "0.0.0"
133-
glob:
134-
dependency: transitive
135-
description:
136-
name: glob
137-
url: "https://pub.dartlang.org"
138-
source: hosted
139-
version: "1.2.0"
140-
html:
141-
dependency: transitive
142-
description:
143-
name: html
144-
url: "https://pub.dartlang.org"
145-
source: hosted
146-
version: "0.14.0+3"
14798
http:
14899
dependency: "direct main"
149100
description:
150101
name: http
151102
url: "https://pub.dartlang.org"
152103
source: hosted
153104
version: "0.12.1"
154-
http_multi_server:
155-
dependency: transitive
156-
description:
157-
name: http_multi_server
158-
url: "https://pub.dartlang.org"
159-
source: hosted
160-
version: "2.2.0"
161105
http_parser:
162106
dependency: transitive
163107
description:
@@ -172,27 +116,6 @@ packages:
172116
url: "https://pub.dartlang.org"
173117
source: hosted
174118
version: "2.1.12"
175-
io:
176-
dependency: transitive
177-
description:
178-
name: io
179-
url: "https://pub.dartlang.org"
180-
source: hosted
181-
version: "0.3.4"
182-
js:
183-
dependency: transitive
184-
description:
185-
name: js
186-
url: "https://pub.dartlang.org"
187-
source: hosted
188-
version: "0.6.1+1"
189-
logging:
190-
dependency: transitive
191-
description:
192-
name: logging
193-
url: "https://pub.dartlang.org"
194-
source: hosted
195-
version: "0.11.4"
196119
matcher:
197120
dependency: transitive
198121
description:
@@ -207,62 +130,20 @@ packages:
207130
url: "https://pub.dartlang.org"
208131
source: hosted
209132
version: "1.1.8"
210-
mime:
211-
dependency: transitive
212-
description:
213-
name: mime
214-
url: "https://pub.dartlang.org"
215-
source: hosted
216-
version: "0.9.6+3"
217133
mockito:
218-
dependency: transitive
134+
dependency: "direct main"
219135
description:
220136
name: mockito
221137
url: "https://pub.dartlang.org"
222138
source: hosted
223139
version: "4.1.1"
224-
multi_server_socket:
225-
dependency: transitive
226-
description:
227-
name: multi_server_socket
228-
url: "https://pub.dartlang.org"
229-
source: hosted
230-
version: "1.0.2"
231140
nested:
232141
dependency: transitive
233142
description:
234143
name: nested
235144
url: "https://pub.dartlang.org"
236145
source: hosted
237146
version: "0.0.4"
238-
node_interop:
239-
dependency: transitive
240-
description:
241-
name: node_interop
242-
url: "https://pub.dartlang.org"
243-
source: hosted
244-
version: "1.1.1"
245-
node_io:
246-
dependency: transitive
247-
description:
248-
name: node_io
249-
url: "https://pub.dartlang.org"
250-
source: hosted
251-
version: "1.1.1"
252-
node_preamble:
253-
dependency: transitive
254-
description:
255-
name: node_preamble
256-
url: "https://pub.dartlang.org"
257-
source: hosted
258-
version: "1.4.9"
259-
package_config:
260-
dependency: transitive
261-
description:
262-
name: package_config
263-
url: "https://pub.dartlang.org"
264-
source: hosted
265-
version: "1.9.3"
266147
path:
267148
dependency: transitive
268149
description:
@@ -284,81 +165,25 @@ packages:
284165
url: "https://pub.dartlang.org"
285166
source: hosted
286167
version: "2.4.0"
287-
pool:
288-
dependency: transitive
289-
description:
290-
name: pool
291-
url: "https://pub.dartlang.org"
292-
source: hosted
293-
version: "1.4.0"
294168
provider:
295169
dependency: transitive
296170
description:
297171
name: provider
298172
url: "https://pub.dartlang.org"
299173
source: hosted
300174
version: "4.1.2"
301-
pub_semver:
302-
dependency: transitive
303-
description:
304-
name: pub_semver
305-
url: "https://pub.dartlang.org"
306-
source: hosted
307-
version: "1.4.4"
308175
quiver:
309176
dependency: transitive
310177
description:
311178
name: quiver
312179
url: "https://pub.dartlang.org"
313180
source: hosted
314181
version: "2.1.3"
315-
shelf:
316-
dependency: transitive
317-
description:
318-
name: shelf
319-
url: "https://pub.dartlang.org"
320-
source: hosted
321-
version: "0.7.5"
322-
shelf_packages_handler:
323-
dependency: transitive
324-
description:
325-
name: shelf_packages_handler
326-
url: "https://pub.dartlang.org"
327-
source: hosted
328-
version: "2.0.0"
329-
shelf_static:
330-
dependency: transitive
331-
description:
332-
name: shelf_static
333-
url: "https://pub.dartlang.org"
334-
source: hosted
335-
version: "0.2.8"
336-
shelf_web_socket:
337-
dependency: transitive
338-
description:
339-
name: shelf_web_socket
340-
url: "https://pub.dartlang.org"
341-
source: hosted
342-
version: "0.2.3"
343182
sky_engine:
344183
dependency: transitive
345184
description: flutter
346185
source: sdk
347186
version: "0.0.99"
348-
source_map_stack_trace:
349-
dependency: transitive
350-
description:
351-
name: source_map_stack_trace
352-
url: "https://pub.dartlang.org"
353-
source: hosted
354-
version: "2.0.0"
355-
source_maps:
356-
dependency: transitive
357-
description:
358-
name: source_maps
359-
url: "https://pub.dartlang.org"
360-
source: hosted
361-
version: "0.10.9"
362187
source_span:
363188
dependency: transitive
364189
description:
@@ -394,27 +219,13 @@ packages:
394219
url: "https://pub.dartlang.org"
395220
source: hosted
396221
version: "1.1.0"
397-
test:
398-
dependency: transitive
399-
description:
400-
name: test
401-
url: "https://pub.dartlang.org"
402-
source: hosted
403-
version: "1.14.4"
404222
test_api:
405223
dependency: transitive
406224
description:
407225
name: test_api
408226
url: "https://pub.dartlang.org"
409227
source: hosted
410228
version: "0.2.15"
411-
test_core:
412-
dependency: transitive
413-
description:
414-
name: test_core
415-
url: "https://pub.dartlang.org"
416-
source: hosted
417-
version: "0.3.4"
418229
typed_data:
419230
dependency: transitive
420231
description:
@@ -429,48 +240,13 @@ packages:
429240
url: "https://pub.dartlang.org"
430241
source: hosted
431242
version: "2.0.8"
432-
vm_service:
433-
dependency: transitive
434-
description:
435-
name: vm_service
436-
url: "https://pub.dartlang.org"
437-
source: hosted
438-
version: "4.0.4"
439-
watcher:
440-
dependency: transitive
441-
description:
442-
name: watcher
443-
url: "https://pub.dartlang.org"
444-
source: hosted
445-
version: "0.9.7+15"
446-
web_socket_channel:
447-
dependency: transitive
448-
description:
449-
name: web_socket_channel
450-
url: "https://pub.dartlang.org"
451-
source: hosted
452-
version: "1.1.0"
453-
webkit_inspection_protocol:
454-
dependency: transitive
455-
description:
456-
name: webkit_inspection_protocol
457-
url: "https://pub.dartlang.org"
458-
source: hosted
459-
version: "0.7.3"
460243
xml:
461244
dependency: transitive
462245
description:
463246
name: xml
464247
url: "https://pub.dartlang.org"
465248
source: hosted
466249
version: "3.6.1"
467-
yaml:
468-
dependency: transitive
469-
description:
470-
name: yaml
471-
url: "https://pub.dartlang.org"
472-
source: hosted
473-
version: "2.2.1"
474250
sdks:
475251
dart: ">=2.7.0 <3.0.0"
476252
flutter: ">=1.16.0"

pubspec.yaml

+1-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ dependencies:
1818
equatable: ^1.2.0
1919
# A composable, Future-based library for making HTTP requests.
2020
http: ^0.12.1
21-
22-
# For BLoC testing
23-
bloc_test: ^5.1.0
21+
mockito: ^4.1.1
2422

2523
dev_dependencies:
2624
flutter_test:

0 commit comments

Comments
 (0)