We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4734cf8 commit b500799Copy full SHA for b500799
test/mustachio/renderer_test.dart
@@ -21,12 +21,13 @@ void main() {
21
22
test('property map contains all public getters', () {
23
var propertyMap = Renderer_Foo.propertyMap();
24
- expect(propertyMap.keys, hasLength(5));
+ expect(propertyMap.keys, hasLength(6));
25
expect(propertyMap['b1'], isNotNull);
26
expect(propertyMap['s1'], isNotNull);
27
expect(propertyMap['l1'], isNotNull);
28
expect(propertyMap['baz'], isNotNull);
29
expect(propertyMap['hashCode'], isNotNull);
30
+ expect(propertyMap['runtimeType'], isNotNull);
31
});
32
33
test('property map contains valid bool Properties', () {
0 commit comments