@Test
 public void testResolution() throws Exception {
   boolean localRequiresRuntime =
       ServerProfileModel.getDefault().profileRequiresRuntime(serverType, "local");
   assertTrue(localRequiresRuntime);
   boolean rseRequiresRuntime =
       ServerProfileModel.getDefault().profileRequiresRuntime(serverType, "rse");
   assertFalse(rseRequiresRuntime);
 }