@Test
  public void shouldCountInstallations() {
    final Map<String, Long> result = pushApplicationDao.countInstallationsByType("888");

    assertThat(result).isNotEmpty();
    assertThat(result.get("1")).isEqualTo(2L);
    assertThat(result.get("3")).isEqualTo(1L);
    assertThat(result.get(VariantType.ANDROID.getTypeName())).isEqualTo(2L);
  }