1
2
// this test doesn't specify all the interface members
3
4
function Test() {
5
}
6
7
Test.prototype.getInstance = function() {
8
return instance;
9
10
11
Test.prototype.getProperties = function() {
12
return properties;
13
14