Home
last modified time | relevance | path

Searched refs:TestChatAction (Results 1 – 3 of 3) sorted by relevance

/aosp12/packages/apps/Messaging/tests/src/com/android/messaging/datamodel/action/
H A DActionServiceSystemTest.java55 final TestChatAction test = (TestChatAction) action; in onActionSucceeded()
67 final TestChatAction test = (TestChatAction) action; in onActionFailed()
79 final TestChatAction test = (TestChatAction) action; in onActionExecuted()
94 final TestChatAction initial = new TestChatAction(monitor.getActionKey(), parameter); in testChatActionSucceeds()
147 final TestChatAction action = new TestChatAction(monitor.getActionKey(), parameter); in testChatActionFails()
190 final TestChatAction action = in testChatActionNoMonitor()
232 final TestChatAction action = new TestChatAction(monitor.getActionKey(), parameter); in testChatActionUnregisterListener()
354 private TestChatAction(final Parcel in) { in TestChatAction() method in ActionServiceSystemTest.TestChatAction
361 = new Parcelable.Creator<TestChatAction>() {
364 return new TestChatAction(in);
[all …]
H A DActionServiceTest.java55 final TestChatAction test = (TestChatAction) action; in onActionSucceeded()
70 final TestChatAction test = (TestChatAction) action; in onActionFailed()
90 final TestChatAction action = new TestChatAction(monitor.getActionKey(), parameter); in testChatServiceCreatesIntentAndExecutesAction()
182 protected TestChatAction(final String key, final String parameter) { in TestChatAction() method in ActionServiceTest.TestChatAction
217 private TestChatAction(final Parcel in) { in TestChatAction() method in ActionServiceTest.TestChatAction
221 public static final Parcelable.Creator<TestChatAction> CREATOR
222 = new Parcelable.Creator<TestChatAction>() {
224 public TestChatAction createFromParcel(final Parcel in) {
225 return new TestChatAction(in);
229 public TestChatAction[] newArray(final int size) {
[all …]
H A DActionTest.java42 private TestChatAction mAction;
54 mAction = new TestChatAction(mActionKey, parameter); in setUp()
265 public static class TestChatAction extends Action implements Parcelable { class in ActionTest
266 protected TestChatAction(final String key, final String parameter) { in TestChatAction() method in ActionTest.TestChatAction
300 private TestChatAction(final Parcel in) { in TestChatAction() method in ActionTest.TestChatAction
305 public static final Parcelable.Creator<TestChatAction> CREATOR
306 = new Parcelable.Creator<TestChatAction>() {
308 public TestChatAction createFromParcel(final Parcel in) {
309 return new TestChatAction(in);
313 public TestChatAction[] newArray(final int size) {
[all …]