/**
  * Test method for {@link
  * org.powertac.common.spring.SpringApplicationContext#getBeanByType(java.lang.Class)}.
  */
 @Test
 public void testGetBeanByType() {
   BrokerRepo repo = SpringApplicationContext.getBeanByType(BrokerRepo.class);
   assertNotNull("found the repo", repo);
 }