• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2017 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 package org.chromium.base.test.params;
5 
6 import java.lang.annotation.ElementType;
7 import java.lang.annotation.Inherited;
8 import java.lang.annotation.Retention;
9 import java.lang.annotation.RetentionPolicy;
10 import java.lang.annotation.Target;
11 
12 /**
13  * BaseJUnit4ClassRunner and host side test harness skips commandline parameterization for test
14  * classes or methods annotated with SkipCommandLineParameterization.
15  */
16 @Inherited
17 @Retention(RetentionPolicy.RUNTIME)
18 @Target({ElementType.METHOD, ElementType.TYPE})
19 public @interface SkipCommandLineParameterization {}
20