File tree 5 files changed +8
-9
lines changed
5 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 1
- # See https://www.dartlang.org /guides/libraries/private-files
1
+ # See https://dart.dev /guides/libraries/private-files
2
2
3
3
# Files and directories created by pub
4
4
.dart_tool
Original file line number Diff line number Diff line change 24
24
## 4.0.0
25
25
26
26
* Replace the dependency on the
27
- _ [ test] ( https://pub.dartlang.org /packages/test ) _ package with a dependency on
28
- the new _ [ test_api] ( https://pub.dartlang.org /packages/test_api ) _ package.
27
+ _ [ test] ( https://pub.dev /packages/test ) _ package with a dependency on
28
+ the new _ [ test_api] ( https://pub.dev /packages/test_api ) _ package.
29
29
This dramatically reduces mockito's transitive dependencies.
30
30
31
31
This bump can result in runtime errors when coupled with a version of the
32
32
test package older than 1.4.0.
33
33
34
34
## 3.0.2
35
35
36
- * Rollback the _ [ test_api] ( https://pub.dartlang.org /packages/test_api ) _ part of
36
+ * Rollback the _ [ test_api] ( https://pub.dev /packages/test_api ) _ part of
37
37
the 3.0.1 release. This was breaking tests that use Flutter's current test
38
38
tools, and will instead be released as part of Mockito 4.0.0.
39
39
40
40
## 3.0.1
41
41
42
42
* Replace the dependency on the
43
- _ [ test] ( https://pub.dartlang.org /packages/test ) _ package with a dependency on
44
- the new _ [ test_api] ( https://pub.dartlang.org /packages/test_api ) _ package.
43
+ _ [ test] ( https://pub.dev /packages/test ) _ package with a dependency on
44
+ the new _ [ test_api] ( https://pub.dev /packages/test_api ) _ package.
45
45
This dramatically reduces mockito's transitive dependencies.
46
46
* Internal improvements to tests and examples.
47
47
Original file line number Diff line number Diff line change 2
2
3
3
Mock library for Dart inspired by [ Mockito] ( https://github.com/mockito/mockito ) .
4
4
5
- [ ![ Pub] ( https://img.shields.io/pub/v/mockito.svg )] ( https://pub.dartlang.org /packages/mockito )
5
+ [ ![ Pub] ( https://img.shields.io/pub/v/mockito.svg )] ( https://pub.dev /packages/mockito )
6
6
[ ![ Build Status] ( https://travis-ci.org/dart-lang/mockito.svg?branch=master )] ( https://travis-ci.org/dart-lang/mockito )
7
7
8
8
## Let's create mocks
Original file line number Diff line number Diff line change 1
1
# International Space Station (ISS) library
2
2
3
3
This library accesses the International Space Station's APIs
4
- (using [ package: http ] ( https://pub.dartlang.org /packages/http ) )
4
+ (using [ package: http ] ( https://pub.dev /packages/http ) )
5
5
to fetch the space station's current location.
6
6
7
7
The unit tests for this library use package: mockito to generate
Original file line number Diff line number Diff line change @@ -118,7 +118,6 @@ class Mock {
118
118
dynamic noSuchMethod (Invocation invocation, [Object /*?*/ returnValue]) {
119
119
// noSuchMethod is that 'magic' that allows us to ignore implementing fields
120
120
// and methods and instead define them later at compile-time per instance.
121
- // See "Emulating Functions and Interactions" on dartlang.org: goo.gl/r3IQUH
122
121
invocation = _useMatchedInvocationIfSet (invocation);
123
122
if (_whenInProgress) {
124
123
_whenCall = _WhenCall (this , invocation);
You can’t perform that action at this time.
0 commit comments