Path path = new Path();
final Path.FillType defaultFillType = path.getFillType();
final Path.FillType fillType = Path.FillType.INVERSE_EVEN_ODD;
assertFalse(fillType.equals(defaultFillType)); // Sanity check for the test itself.
path.setFillType(fillType);
path.reset();
assertEquals(path.getFillType(), fillType);