@Test
 public void defaultValuesIgnored() {
   RequestBuilder b = new RequestBuilder();
   b.scale(1);
   assertThat(b.options).isNull();
   b.scale(1, 1);
   assertThat(b.options).isNull();
   b.rotate(0);
   assertThat(b.options).isNull();
   b.rotate(0, 40, 10);
   assertThat(b.options).isNull();
 }