@Test
 public void setAssetTransmissionManagerThrowsCantSetObjectExceptionTest()
     throws CantSetObjectException {
   try {
     assetDistributionMonitorAgent.setAssetTransmissionManager(null);
     fail("The method didn't throw when I expected it to");
   } catch (Exception ex) {
     Assert.assertTrue(ex instanceof CantSetObjectException);
   }
 }
 @Test
 public void setAssetTransmissionManagerTest() throws CantSetObjectException {
   assetDistributionMonitorAgent.setAssetTransmissionManager(assetTransmissionManager);
 }