Skip to content

Commit

Permalink
Fixed more unit tests and a small documentation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hmusavi committed Dec 6, 2018
1 parent 42415ab commit 2af2467
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified docs/ODE_Output_Schema_Reference.docx
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ public void testDepositToDDS() throws DdsRequestManagerException, Asn1CommandMan
testAsn1CommandManager.depositToDDS("message");
}

@Test
@Test(expected = Asn1CommandManagerException.class)
public void testDepositToDDSException() throws DdsRequestManagerException, Asn1CommandManagerException {
new Expectations() {{
capturingDdsDepositor.deposit(anyString);
result = new DdsRequestManagerException(null);
result = new Asn1CommandManagerException(anyString, (Exception) any);
}};
testAsn1CommandManager.depositToDDS("message");
}
Expand Down

0 comments on commit 2af2467

Please sign in to comment.