Skip to content

Commit 1113c69

Browse files
committed
change all tests to use client.dart
1 parent 42dbdc4 commit 1113c69

12 files changed

+15
-15
lines changed

test/client_auth_test.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import 'package:test/test.dart';
22

3-
import '../lib/servicestack.dart';
3+
import '../lib/client.dart';
44
import 'utils.dart';
55

66
import 'dtos/test.dtos.dart';

test/client_test.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import 'package:test/test.dart';
22
import 'dart:convert';
33
import 'dart:typed_data';
44

5-
import '../lib/servicestack.dart';
5+
import '../lib/client.dart';
66
import 'utils.dart';
77

88
import 'dtos/test.dtos.dart';

test/converter_test.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import 'package:test/test.dart';
2-
import '../lib/servicestack.dart';
2+
import '../lib/client.dart';
33

44
main() {
55
test('Can parse ISO 8601 DateTime', () {

test/dtos/checkweb.dtos.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ BaseUrl: http://localhost:55799
1111
//AddDescriptionAsComments: True
1212
//IncludeTypes:
1313
//ExcludeTypes:
14-
DefaultImports: ../../lib/servicestack.dart
14+
DefaultImports: ../../lib/client.dart
1515
*/
1616

17-
import '../../lib/servicestack.dart';
17+
import '../../lib/client.dart';
1818
import 'dart:collection';
1919
import 'dart:typed_data';
2020

test/dtos/techstacks.dtos.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ BaseUrl: https://www.techstacks.io
1111
//AddDescriptionAsComments: True
1212
//IncludeTypes:
1313
//ExcludeTypes:
14-
DefaultImports: ../../lib/servicestack.dart
14+
DefaultImports: ../../lib/client.dart
1515
*/
1616

17-
import '../../lib/servicestack.dart';
17+
import '../../lib/client.dart';
1818

1919
enum PostType
2020
{

test/dtos/test.dtos.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ AddImplicitVersion: 1
1111
//AddDescriptionAsComments: True
1212
//IncludeTypes:
1313
//ExcludeTypes:
14-
DefaultImports: ../../lib/servicestack.dart
14+
DefaultImports: ../../lib/client.dart
1515
*/
1616

17-
import '../../lib/servicestack.dart';
17+
import '../../lib/client.dart';
1818
import 'dart:collection';
1919
import 'dart:typed_data';
2020

test/json_service_client_test.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import 'package:test/test.dart';
22

3-
import '../lib/servicestack.dart';
3+
import '../lib/client.dart';
44
import 'utils.dart';
55

66
import 'dtos/test.dtos.dart';

test/pad.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import '../lib/servicestack.dart';
1+
import '../lib/client.dart';
22

33
JsonServiceClient createTestClient() =>
44
new JsonServiceClient("http://test.servicestack.net")

test/techstacks_test.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import 'package:test/test.dart';
22

3-
import '../lib/servicestack.dart';
3+
import '../lib/client.dart';
44
import 'utils.dart';
55

66
import 'dtos/techstacks.dtos.dart';

test/test_auth_test.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import 'package:test/test.dart';
22

3-
import '../lib/servicestack.dart';
3+
import '../lib/client.dart';
44
import 'utils.dart';
55

66
import 'dtos/test.dtos.dart';

test/utils.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import 'package:test/test.dart';
22
import 'dart:convert';
33

4-
import '../lib/servicestack.dart';
4+
import '../lib/client.dart';
55

66
import 'dtos/test.dtos.dart';
77

test/utils_test.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
library client_test;
22
import 'package:test/test.dart';
33

4-
import '../lib/servicestack.dart';
4+
import '../lib/client.dart';
55

66
void main() {
77
test('Does parse Generic Type args', (){

0 commit comments

Comments
 (0)