tests: Keep all classes private in HTTPItemURITest
authorZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Sat, 13 Mar 2010 02:05:00 +0000 (04:05 +0200)
committerZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Sat, 13 Mar 2010 02:05:00 +0000 (04:05 +0200)
tests/rygel-http-item-uri-test.vala

index fc026d3..37c2f25 100644 (file)
  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
-public errordomain Rygel.HTTPRequestError {
+private errordomain Rygel.HTTPRequestError {
     UNACCEPTABLE = Soup.KnownStatusCode.NOT_ACCEPTABLE,
     BAD_REQUEST = Soup.KnownStatusCode.BAD_REQUEST,
     NOT_FOUND = Soup.KnownStatusCode.NOT_FOUND
 }
 
-public errordomain Rygel.TestError {
+private errordomain Rygel.TestError {
     SKIP
 }
 
-public class Rygel.HTTPServer : GLib.Object {
+private class Rygel.HTTPServer : GLib.Object {
     private const string SERVER_PATH = "/RygelHTTPServer/Rygel/Test";
 
     public string path_root { get; private set; }
@@ -53,7 +53,7 @@ public class Rygel.HTTPServer : GLib.Object {
     }
 }
 
-public class Rygel.HTTPItemURITest : GLib.Object {
+private class Rygel.HTTPItemURITest : GLib.Object {
     private const string ITEM_ID = "HELLO";
     private const int THUMBNAIL_INDEX = 1;
     private const string TRANSCODE_TARGET = "MP3";