media/libraries/muxer/src
samrobinson fe272d3c49 Follow practices/guidance in Muxer tests around:
* @Before and @After usage. [1].
* static fields before non-static. [2].

@Before method should typically be paired with an @After method,
focused on ensuring that the component is released regardless of what
the test does.

In tests, inlining final class variables is preferrable [1]. In general
things like the file path should be part of the test (the @Rule means
we don't need before/after) if only used once.

Statically importing values and using them directly is preferable to
having a variable declared as non-final that's effectively final,
because from a readability perspective someone can see (the caps) that
the value is final static and immutable, so doesn't have to check if
it's changed/reassigned.

PiperOrigin-RevId: 586697887
2023-11-30 09:29:18 -08:00
..
androidTest Enable nullness checker for Muxer module androidTest library 2023-06-08 12:48:03 +00:00
main Make sure the mdat box is not extended by more than 1 GB at a time. 2023-09-08 04:07:13 -07:00
test Follow practices/guidance in Muxer tests around: 2023-11-30 09:29:18 -08:00