icon added

This commit is contained in:
Roumen Georgiev 2019-05-16 16:03:05 +03:00
parent 4aaca7acb1
commit ccd66d498c
3 changed files with 2 additions and 2 deletions

View file

@ -120,7 +120,7 @@ public class TriggerAutosensValue extends Trigger {
@Override
public Optional<Integer> icon() {
return Optional.of(R.drawable.remove); // TODO icon
return Optional.of(R.drawable.as);
}
@Override

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -105,7 +105,7 @@ public class TriggerAutosensValueTest {
@Test
public void iconTest() {
Assert.assertEquals(Optional.of(R.drawable.remove), new TriggerAutosensValue().icon());
Assert.assertEquals(Optional.of(R.drawable.as), new TriggerAutosensValue().icon());
}