-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproxy_test.dart
69 lines (49 loc) · 1.66 KB
/
proxy_test.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import 'dart:mirrors';
import 'package:test/test.dart';
class UnmodifiableSet<E> implements Set<E> {
static final unsupported =
UnsupportedError("This method is not supported on unmodifiable set");
final InstanceMirror _delegateMirror;
UnmodifiableSet.unmodifiable(Set<E> set) : _delegateMirror = reflect(set);
@override
bool add(E value) => throw unsupported;
@override
void clear() => throw unsupported;
@override
void retainWhere(bool test(E element)) => throw unsupported;
@override
void removeWhere(bool test(E element)) => throw unsupported;
@override
void retainAll(Iterable<Object?> elements) => throw unsupported;
@override
void removeAll(Iterable<Object?> elements) => throw unsupported;
@override
bool remove(Object? value) => throw unsupported;
@override
void addAll(Iterable<E> elements) => throw unsupported;
@override
String toString() => _delegateMirror.reflectee.toString();
@override
dynamic noSuchMethod(Invocation invocation) {
return _delegateMirror.delegate(invocation);
}
}
void main() {
late Set<int> unmodifiableSet;
setUp(() {
Set<int> mutableSet = Set.of([1, 2, 3]);
unmodifiableSet = UnmodifiableSet.unmodifiable(mutableSet);
});
test("should contain value", () {
expect(unmodifiableSet.contains(1), isTrue);
});
test("should calculate difference", () {
expect(unmodifiableSet.difference(Set.of([2, 3, 4])), equals(Set.of([1])));
});
test("should throw when adding", () {
expect(() => unmodifiableSet.add(4), throwsUnsupportedError);
});
test("should throw when clearing", () {
expect(() => unmodifiableSet.clear(), throwsUnsupportedError);
});
}