Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit fa153a8

Browse files
committed
test(app_service): UnimplementedError
1 parent bd4a88d commit fa153a8

File tree

2 files changed

+93
-0
lines changed

2 files changed

+93
-0
lines changed

‎test/src/common.dart‎

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
///
2+
/// Example JSON Response from the API : https://developers.themoviedb.org/3
3+
///
4+
final exampleJsonResponse = {
5+
"results": [
6+
{
7+
"adult": false,
8+
"backdrop_path": "/fCayJrkfRaCRCTh8GqN30f8oyQF.jpg",
9+
"belongs_to_collection": null,
10+
"budget": 63000000,
11+
"genres": [
12+
{"id": 18, "name": "Drama"}
13+
],
14+
"homepage": "",
15+
"id": 550,
16+
"imdb_id": "tt0137523",
17+
"original_language": "en",
18+
"original_title": "Fight Club",
19+
"overview":
20+
"A ticking-time-bomb insomniac and a slippery soap salesman channel primal male aggression into a shocking new form of therapy. Their concept catches on, with underground \"fight clubs\" forming in every town, until an eccentric gets in the way and ignites an out-of-control spiral toward oblivion.",
21+
"popularity": 0.5,
22+
"poster_path": null,
23+
"production_companies": [
24+
{
25+
"id": 508,
26+
"logo_path": "/7PzJdsLGlR7oW4J0J5Xcd0pHGRg.png",
27+
"name": "Regency Enterprises",
28+
"origin_country": "US"
29+
},
30+
{
31+
"id": 711,
32+
"logo_path": null,
33+
"name": "Fox 2000 Pictures",
34+
"origin_country": ""
35+
},
36+
{
37+
"id": 20555,
38+
"logo_path": null,
39+
"name": "Taurus Film",
40+
"origin_country": ""
41+
},
42+
{
43+
"id": 54050,
44+
"logo_path": null,
45+
"name": "Linson Films",
46+
"origin_country": ""
47+
},
48+
{
49+
"id": 54051,
50+
"logo_path": null,
51+
"name": "Atman Entertainment",
52+
"origin_country": ""
53+
},
54+
{
55+
"id": 54052,
56+
"logo_path": null,
57+
"name": "Knickerbocker Films",
58+
"origin_country": ""
59+
},
60+
{
61+
"id": 25,
62+
"logo_path": "/qZCc1lty5FzX30aOCVRBLzaVmcp.png",
63+
"name": "20th Century Fox",
64+
"origin_country": "US"
65+
}
66+
],
67+
"production_countries": [
68+
{"iso_3166_1": "US", "name": "United States of America"}
69+
],
70+
"release_date": "1999年10月12日",
71+
"revenue": 100853753,
72+
"runtime": 139,
73+
"spoken_languages": [
74+
{"iso_639_1": "en", "name": "English"}
75+
],
76+
"status": "Released",
77+
"tagline":
78+
"How much can you know about yourself if you've never been in a fight?",
79+
"title": "Fight Club",
80+
"video": false,
81+
"vote_average": 7.8,
82+
"vote_count": 3439
83+
}
84+
],
85+
};
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import 'package:flutter_test/flutter_test.dart';
2+
3+
main() {
4+
test('loadMovies', () async {
5+
// TODO 1- Must implement app_service#loadMovies
6+
throw UnimplementedError();
7+
});
8+
}

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /