Add: getTypingAppList (incompleted)
This commit is contained in:
+31
@@ -1,3 +1,34 @@
|
||||
//////////////////////////////////////////////////
|
||||
// app list DB
|
||||
|
||||
QUnit.test( "AppList", function( assert ) {
|
||||
var MAESTRO_ID = 3; // 삼화초
|
||||
var PLAYER_ID = 35; // 박지상
|
||||
var APP_GROUP = 0; // finger position
|
||||
var LANGUAGE = 0; // Korean
|
||||
|
||||
var dbService = new DBService();
|
||||
dbService.setMaestroID(MAESTRO_ID);
|
||||
dbService.setPlayerID(PLAYER_ID);
|
||||
|
||||
var done = assert.async();
|
||||
setTimeout(function() {
|
||||
dbService.requestMainMenuAppData(
|
||||
APP_GROUP,
|
||||
LANGUAGE,
|
||||
(function(jsonData) {
|
||||
assert.equal(jsonData.appGroup, 0, "appGroup");
|
||||
assert.equal(jsonData.appData, null, "appData");
|
||||
done();
|
||||
}).bind(this),
|
||||
(function(jsonData) {
|
||||
console.log(replyJSON);
|
||||
done();
|
||||
}).bind(this)
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// typing exam highest record DB
|
||||
|
||||
|
||||
Reference in New Issue
Block a user