Example #1
0
 @Test
 public void testSetPreferences() {
   XenonConfiguration g = new XenonConfiguration();
   ImmutableMap<String, String> prefs = ImmutableMap.of("mykey", "myval");
   g.setPreferences(prefs);
   assertThat(g.getPreferences()).isEqualTo(prefs);
 }