summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJens Georg <jensg@openismus.com>2012-10-22 14:48:25 +0200
committerJens Georg <jensg@openismus.com>2012-10-29 15:50:44 +0100
commitc82024c3ba450787be7875f24b5729a6dbf9176b (patch)
treec1955bded3563bc0ef2506e4c384e1ee5b85e64d /tests
parent5c10e44e38723e05114bc29d22a9f1560e3755a3 (diff)
downloadrygel-c82024c3ba450787be7875f24b5729a6dbf9176b.tar.gz
server: Implement search for upnp:*UpdateID
Diffstat (limited to 'tests')
-rw-r--r--tests/rygel-item-creator-test.vala8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/rygel-item-creator-test.vala b/tests/rygel-item-creator-test.vala
index cf41b920..973a7f0f 100644
--- a/tests/rygel-item-creator-test.vala
+++ b/tests/rygel-item-creator-test.vala
@@ -114,12 +114,19 @@ public class Rygel.MediaObject : GLib.Object {
public string title;
public GUPnP.OCMFlags ocm_flags;
public Gee.ArrayList<string> uris;
+ public uint object_update_id;
public void add_uri (string uri) {
this.uris.add (uri);
}
}
+public interface Rygel.TrackableContainer : Rygel.MediaContainer {
+}
+
+public interface Rygel.TrackableItem : Rygel.MediaItem {
+}
+
public class Rygel.MediaItem : Rygel.MediaObject {
public string dlna_profile;
public string mime_type;
@@ -186,6 +193,7 @@ public class Rygel.MediaContainer : Rygel.MediaObject {
public Gee.ArrayList<string> create_classes = new Gee.ArrayList<string> ();
public int child_count;
public string sort_criteria = "+dc:title";
+ public uint update_id;
// mockable elements
public MediaObject found_object = null;