Skip to content

Instantly share code, notes, and snippets.

@hleofxquotes
hleofxquotes / http_get_json_test.dart
Created October 4, 2018 22:31
Dart, test code, http get, json, checksum
import 'dart:convert';
import 'package:crypto/crypto.dart';
import 'package:http/http.dart' as http;
import 'package:test/test.dart';
void main() {
test('json http unit test', () async {
http.Response response =
await http.get('https://jsonplaceholder.typicode.com/posts/1');