35 const drConstructor =
new Components.Constructor(
"@songbirdnest.com/Songbird/DataRemote;1",
"sbIDataRemote",
"init");
36 var dr =
new drConstructor(
"foo",
null);
37 dr.stringValue =
"Success";
39 var expression = /Success/;
40 if ( !expression.test(dr.stringValue) )
41 return Components.results.NS_ERROR_FAILURE;
43 return Components.results.NS_OK;
function prepDataRemotes()
Head file for DataRemote unit tests.
function prepDRBasic()
Head file for DataRemote unit tests.
function runTest()
Basic DataRemote unit tests.