• Home
  • Raw
  • Download

Lines Matching refs:app

37   expect("app.alert('message', 1, 2, 'title')", 0);
38 expect("app.alert({'cMsg': 'message', 'cTitle': 'title'})", 0);
39 expect("app.alert({'cMsg': 'message', 'cTitle': 'title', 'nIcon': 3, 'nType': 4})", 0);
40 expect("app.alert(undefined)", 0);
41 expect("app.alert(null)", 0);
42 expect("app.alert(true)", 0);
43 expect("app.alert(false)", 0);
44 expect("app.alert(42)", 0);
45 expect("app.alert([1, 2, 3])", 0);
46 expect("app.alert([1, 2, {'color': 'red'}])", 0);
47 expect("app.alert({'color': 'red'}, 5, 6, 'title')", 0);
48 expectError("app.alert()");
49 expectError("app.alert({})");
50 expectError("app.alert({'color': 'red', 'size': 42})");
52 expect("app.beep(1)", undefined);
54 expectError("app.browseForDoc()");
55 expect("app.execDialog()", undefined);
56 expectError("app.execMenuItem()");
57 expect("app.findComponent()", undefined);
58 expect("app.goBack()", undefined);
59 expect("app.goForward()", undefined);
60 expect("app.launchURL()", undefined);
61 expectError("app.newDoc()");
62 expect("app.newFDF()", undefined);
63 expectError("app.openDoc()");
64 expect("app.openFDF()", undefined);
65 expectError("app.popUpMenuEx()");
66 expectError("app.popUpMenu()");
68 expect("app.mailMsg(true)", undefined);
69 expect("app.mailMsg(false, 'user@example.com')", undefined);
70 expect("app.mailMsg(false, 'user@example.com', 'cc@example.com', " +
72 expect("app.mailMsg({'bUI': true})", undefined);
73 expect("app.mailMsg({'bUI': false, 'cTo': 'user@example.com'})", undefined);
74 expect("app.mailMsg({'bUI': false, 'cTo': 'user@example.com', " +
77 expectError("app.mailMsg()");
78 expectError("app.mailMsg(false)");
79 expectError("app.mailMsg({'color': 'red', 'size': 42})");
81 expect("app.response('question')", 'No');
82 expect("app.response('question', 'title', 'default', true, 'label')", 'No');
83 expect("app.response({'cQuestion': 'question'})", 'No');
84 expect("app.response({'cQuestion': 'question', 'cTitle': 'title', " +
86 expectError("app.response()");
87 expectError("app.response({})");
90 app.alert('Truly unexpected error: ' + e);