mpviewplugins/mpdetailsviewplugin/tsrc/unittest_resources/test-src/MusicTest.js
changeset 48 af3740e3753f
parent 42 79c49924ae23
child 54 c5b304f4d89b
--- a/mpviewplugins/mpdetailsviewplugin/tsrc/unittest_resources/test-src/MusicTest.js	Tue Jul 06 14:13:36 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,49 +0,0 @@
-MusicTest = TestCase('MusicTest');
-
-MusicTest.prototype.testMusicContext = function() {
-    var context = music.privateFunctions.getMusicContext();
-	assertTrue(context.object.data.miniview.indexOf("London Calling") != -1);
-	assertTrue(context.object.data.miniview.indexOf("The Clash") != -1);
-};
-
-MusicTest.prototype.testNoa = function() {
-    var context = music.privateFunctions.getNoa();
-    assertTrue(context.username.indexOf("lcoubert10") != -1);
-    assertTrue(context.password.indexOf("lcoubert01") != -1);
-};
-
-MusicTest.prototype.testInitPlayer = function() {
-//    document.createElement('div').setAttribute("id", "ovi.player.share.ui");
-    /*:DOC += <div id="ovi.player.share.ui"></div>*/
-    music.initPlayer();
-	var ui = document.getElementById("ovi.player.share.ui");
-    assertTrue(ui.innerHTML.indexOf('player') >= 0);
-};
-
-MusicTest.prototype.setUp = function() {
-    window.context = {
-        username: function(){
-            return "lcoubert10"
-        },
-        password: function(){
-            return "lcoubert01"
-        },
-        title: function(){
-            return "London Calling"
-        },
-        album: function(){
-            return "dummyuri"
-        },
-        artist: function(){
-            return "The Clash"
-        },
-        link: function(){
-            return "http://music.ovi.com/ru/ru/pc/Product/Queen/Bohemian-Rhapsody/8019069"
-        },
-        albumArtBase64: function(){return 0;}
-    }
-};
-
-MusicTest.prototype.tearDown = function() { };
-
-