Skip to content

Commit

Permalink
Rename TransformerTest to TransformerEndToEndTest.
Browse files Browse the repository at this point in the history
TransformerTest sounds like a unit test for Transformer but these
tests test behaviour that involves multiple stages of the pipeline.

PiperOrigin-RevId: 425378369
  • Loading branch information
hmsch authored and andrewlewis committed Feb 1, 2022
1 parent a26d7b8 commit 81b194b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* robolectric.
*/
@RunWith(AndroidJUnit4.class)
public class TransformerTest {
public class TransformerEndToEndTest {

private static final String VP9_VIDEO_URI_STRING = "asset:///media/vp9/bear-vp9.webm";
private static final String AVC_VIDEO_URI_STRING = "asset:///media/mp4/sample.mp4";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@
import org.junit.runner.RunWith;
import org.robolectric.shadows.ShadowMediaCodec;

/** Unit test for {@link Transformer}. */
/** End-to-end test for {@link Transformer}. */
@RunWith(AndroidJUnit4.class)
public final class TransformerTest {
public final class TransformerEndToEndTest {
// TODO(b/214973843): Disable fallback for all tests that aren't specifically testing fallback.

private static final String URI_PREFIX = "asset:///media/";
Expand Down

0 comments on commit 81b194b

Please sign in to comment.