| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |