Skip to content

Commit 156aef0

Browse files
committed
Remove google-internal code
1 parent 7a05459 commit 156aef0

8 files changed

Lines changed: 0 additions & 19 deletions

src/main/java/com/google/testing/junit/testparameterinjector/TestMethodProcessor.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
* <p>Note: Implementations of this interface are expected to be immutable, i.e. they no longer
2929
* change after construction.
3030
*/
31-
/* copybara:strip_begin(advanced usage) */ public /* copybara:strip_end */
3231
interface TestMethodProcessor {
3332

3433
/** Allows to transform the test information (name and annotations). */

src/main/java/com/google/testing/junit/testparameterinjector/TestParameter.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,6 @@
7878
* <li>long and int: Specified as YAML integer
7979
* <li>float and double: Specified as YAML floating point or integer
8080
* <li>Enum value: Specified as a String that can be parsed by {@code Enum.valueOf()}
81-
* <li>Protobuf messages: Specified as a YAML mapping or as textproto string:
82-
* <ul>
83-
* <li>As YAML mapping: The mapping keys are the proto field names and their values are
84-
* parsed in the same way as the parameter values
85-
* <li>Textproto string: Formatted according to go/textformat-spec
86-
* </ul>
87-
* <li>
8881
* </ul>
8982
*
9083
* <p>For dynamic sets of parameters or parameter types that are not supported here, use {@link

src/main/java/com/google/testing/junit/testparameterinjector/TestParameterAnnotationMethodProcessor.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@
6666
*
6767
* @see TestParameterAnnotation
6868
*/
69-
/* copybara:strip_begin(advanced usage) */ public /* copybara:strip_end */
7069
class TestParameterAnnotationMethodProcessor implements TestMethodProcessor {
7170

7271
/**

src/main/java/com/google/testing/junit/testparameterinjector/TestParameterProcessor.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
* declaration order, starting with annotations defined at the class, field, method, and finally
2323
* parameter level.
2424
*/
25-
/* copybara:strip_begin(advanced usage) */ public /* copybara:strip_end */
2625
interface TestParameterProcessor {
2726
/** Executes code in the context of a running test statement before the statement starts. */
2827
void before(Object testParameterValue);

src/main/java/com/google/testing/junit/testparameterinjector/TestParameterValidator.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
* Validator interface which allows {@link TestParameterAnnotation} annotations to validate the set
2323
* of annotation values for a given test instance, and to selectively skip the test.
2424
*/
25-
/* copybara:strip_begin(advanced usage) */ public /* copybara:strip_end */
2625
interface TestParameterValidator {
2726

2827
/**

src/main/java/com/google/testing/junit/testparameterinjector/TestParameterValueProvider.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
* Interface which allows {@link TestParameterAnnotation} annotations to provide the values to test
2323
* in a dynamic way.
2424
*/
25-
/* copybara:strip_begin(advanced usage) */ public /* copybara:strip_end */
2625
interface TestParameterValueProvider {
2726

2827
/**

src/main/java/com/google/testing/junit/testparameterinjector/TestParameterValues.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
import java.lang.annotation.Annotation;
1919

2020
/** Interface to retrieve the {@link TestParameterAnnotation} values for a test. */
21-
/* copybara:strip_begin(advanced usage) */ public /* copybara:strip_end */
2221
interface TestParameterValues {
2322
/**
2423
* Returns a {@link TestParameterAnnotation} value for the current test as specified by {@code

src/main/java/com/google/testing/junit/testparameterinjector/TestParameters.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,6 @@
6666
* <li>Parsed types:
6767
* <ul>
6868
* <li>Enum value: Specified as a String that can be parsed by {@code Enum.valueOf()}
69-
* <li>Protobuf messages: Specified as a YAML mapping or as textproto string:
70-
* <ul>
71-
* <li>As YAML mapping: The mapping keys are the proto field names and their values
72-
* are parsed in the same way as the parameter values
73-
* <li>Textproto string: A YAML string formatted according to go/textformat-spec
74-
* </ul>
7569
* </ul>
7670
* <li>
7771
* </ul>

0 commit comments

Comments
 (0)