Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(121)

Side by Side Diff: base/test/android/javatests/src/org/chromium/base/test/util/CommandLineFlags.java

Issue 2766393004: Convert most of the rest of instrumentation tests in content (Closed)
Patch Set: rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 package org.chromium.base.test.util; 5 package org.chromium.base.test.util;
6 6
7 import android.content.Context; 7 import android.content.Context;
8 8
9 import junit.framework.Assert; 9 import org.junit.Assert;
10 10
11 import org.chromium.base.BaseChromiumApplication; 11 import org.chromium.base.BaseChromiumApplication;
12 import org.chromium.base.CommandLine; 12 import org.chromium.base.CommandLine;
13 import org.chromium.base.test.BaseTestResult.PreTestHook; 13 import org.chromium.base.test.BaseTestResult.PreTestHook;
14 import org.chromium.base.test.util.parameter.BaseParameter; 14 import org.chromium.base.test.util.parameter.BaseParameter;
15 15
16 import java.lang.annotation.ElementType; 16 import java.lang.annotation.ElementType;
17 import java.lang.annotation.Inherited; 17 import java.lang.annotation.Inherited;
18 import java.lang.annotation.Retention; 18 import java.lang.annotation.Retention;
19 import java.lang.annotation.RetentionPolicy; 19 import java.lang.annotation.RetentionPolicy;
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 public static class Parameter extends BaseParameter { 149 public static class Parameter extends BaseParameter {
150 public static final String PARAMETER_TAG = "cmdlinearg-parameter"; 150 public static final String PARAMETER_TAG = "cmdlinearg-parameter";
151 public static final String ADD_ARG = "add"; 151 public static final String ADD_ARG = "add";
152 public static final String REMOVE_ARG = "remove"; 152 public static final String REMOVE_ARG = "remove";
153 153
154 public Parameter(org.chromium.base.test.util.parameter.Parameter.Reader parameterReader) { 154 public Parameter(org.chromium.base.test.util.parameter.Parameter.Reader parameterReader) {
155 super(PARAMETER_TAG, parameterReader); 155 super(PARAMETER_TAG, parameterReader);
156 } 156 }
157 } 157 }
158 } 158 }
OLDNEW
« no previous file with comments | « base/test/android/javatests/src/org/chromium/base/test/BaseJUnit4ClassRunner.java ('k') | content/public/android/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698