blob: ae7e7445b318ee3e82fb73f754e60809c234a6e5 [file] [log] [blame]
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jetbrains.android.run;
import junit.framework.TestCase;
public class AndroidActivityLauncherTest extends TestCase {
public void testActivityPath() {
assertEquals("com.foo/.Debug", AndroidActivityLauncher.getLauncherActivityPath("com.foo", ".Debug"));
assertEquals("com.foo/a.b\\$Launcher", AndroidActivityLauncher.getLauncherActivityPath("com.foo", "a.b$Launcher"));
}
public void testAmStartCommand() {
assertEquals("am start -n \"com.foo/.Launch\" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER",
AndroidActivityLauncher.getStartActivityCommand("com.foo/.Launch", "", ""));
assertEquals("am start -D -n \"com.foo/.Launch\" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER",
AndroidActivityLauncher.getStartActivityCommand("com.foo/.Launch", "-D", ""));
assertEquals("am start -D -n \"com.foo/.Launch\" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER --es aa 'bb'",
AndroidActivityLauncher.getStartActivityCommand("com.foo/.Launch", "-D", "--es aa 'bb'"));
}
}