icon
This commit is contained in:
parent
3f86788eb4
commit
f8b3878899
|
@ -149,7 +149,7 @@ public class TriggerDelta extends Trigger {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Optional<Integer> icon() {
|
public Optional<Integer> icon() {
|
||||||
return Optional.of(R.drawable.as); // TODO: Icon for delta
|
return Optional.of(R.drawable.icon_auto_delta);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
BIN
app/src/main/res/drawable/icon_auto_delta.png
Normal file
BIN
app/src/main/res/drawable/icon_auto_delta.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 392 B |
|
@ -116,7 +116,7 @@ public class TriggerDeltaTest {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void iconTest() {
|
public void iconTest() {
|
||||||
Assert.assertEquals(Optional.of(R.drawable.as), new TriggerDelta().icon());
|
Assert.assertEquals(Optional.of(R.drawable.icon_auto_delta), new TriggerDelta().icon());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
|
|
Loading…
Reference in a new issue