Fix ExtractorAsserts Javadoc

PiperOrigin-RevId: 294184891
This commit is contained in:
kimvde 2020-02-10 11:12:43 +00:00 committed by kim-vde
parent 7d19a85c59
commit 7c85ca08cf

View File

@ -170,10 +170,8 @@ public final class ExtractorAsserts {
} }
/** /**
* Asserts that {@code extractor} consumes {@code sampleFile} successfully and its output equals * Asserts that {@code extractor} consumes {@code data} successfully and that its output for
* to a prerecorded output dump file with the name {@code sampleFile} + "{@value * various initial seek times and for a known and unknown length matches prerecorded dump files.
* #DUMP_EXTENSION}". If {@code simulateUnknownLength} is true and {@code sampleFile} + "{@value
* #UNKNOWN_LENGTH_EXTENSION}" exists, it's preferred.
* *
* @param extractor The {@link Extractor} to be tested. * @param extractor The {@link Extractor} to be tested.
* @param dumpFilesPrefix The dump files prefix appended to the dump files path. * @param dumpFilesPrefix The dump files prefix appended to the dump files path.
@ -295,7 +293,7 @@ public final class ExtractorAsserts {
} }
/** /**
* Asserts {@code extractor} throws {@code expectedThrowable} while consuming {@code sampleFile}. * Asserts {@code extractor} throws {@code expectedThrowable} while consuming {@code fileData}.
* *
* @param extractor The {@link Extractor} to be tested. * @param extractor The {@link Extractor} to be tested.
* @param fileData Content of the input file. * @param fileData Content of the input file.