Skip to content
This repository has been archived by the owner on Aug 24, 2022. It is now read-only.

Commit

Permalink
Test for new functional
Browse files Browse the repository at this point in the history
  • Loading branch information
iSergio authored and basduineveld committed Jul 19, 2016
1 parent 7c6a061 commit 709710e
Showing 1 changed file with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,17 @@ public void testAll() {
LOGGER.info(encoder.toString());

encoder.addSUGGESTED_TILE_SIZE("512,512");


encoder.setInputTransparentColor("#FFFFFF");
Assert.isTrue(encoder.getInputTransparentColor().equalsIgnoreCase("#FFFFFF"));

encoder.setOutputTransparentColor("#000000");
Assert.isTrue(encoder.getOutputTransparentColor().equalsIgnoreCase("#000000"));

encoder.setAccurateResolutionComputation(true);
Assert.isTrue(encoder.getAccurateResolutionComputation());

encoder.setFootprintBehavior("None");
Assert.isTrue(encoder.getFootprintBehavior().equalsIgnoreCase("None"));
}
}

0 comments on commit 709710e

Please sign in to comment.