We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d566ce2 commit df3c720Copy full SHA for df3c720
test/search.js
@@ -15,6 +15,14 @@ module.exports.search = function(assert) {
15
assert.equal(favoriteAirline[0].Name, 'GetFavoriteAirline');
16
assert.equal(favoriteAirline[0].IsBound, true);
17
18
+ var annotations = csdl.search(metadata, 'Annotation', 'Org.OData.Core.V1.OptimisticConcurrency');
19
+ assert.notEqual(annotations[0], undefined);
20
+ assert.notEqual(annotations[0].Collection, undefined);
21
+
22
+ annotations = csdl.search(metadata, 'Annotation');
23
24
25
26
assert.done();
27
});
28
}
0 commit comments