File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,9 @@ class Test_Observer {
20
20
21
21
// Make sure caller and callback were set
22
22
expect (observer.getNotifyMethod (), isNotNull);
23
+ expect (observer.notifyMethod, isNotNull);
23
24
expect (observer.getNotifyContext (), isNotNull);
25
+ expect (observer.notifyContext, isNotNull);
24
26
});
25
27
26
28
test ('Constructor minimum args' , () {
@@ -32,6 +34,7 @@ class Test_Observer {
32
34
33
35
// Make sure callback method was set
34
36
expect (observer.getNotifyMethod (), isNotNull);
37
+ expect (observer.notifyMethod, isNotNull);
35
38
});
36
39
37
40
test ('setNotifyMethod()' , () {
@@ -43,6 +46,7 @@ class Test_Observer {
43
46
44
47
// Make sure callback method was set
45
48
expect (observer.getNotifyMethod (), isNotNull);
49
+ expect (observer.notifyMethod, isNotNull);
46
50
});
47
51
48
52
test ('setNotifyContext()' , () {
You can’t perform that action at this time.
0 commit comments