WorldAdm generates

This commit is contained in:
2018-12-05 20:07:36 +01:00
parent e516770fca
commit f2bfaee5d7
5 changed files with 47 additions and 2 deletions

View File

@ -61,4 +61,23 @@ public class ExchangeTest {
}
/**
* Test of createAccount method, of class Exchange.
*/
@Test
public void testCreateAccount() {
System.out.println("createAccount");
Exchange instance = new Exchange(null,(JSONObject)null);
Account expResult = null;
Account result = instance.createAccount();
assertEquals(expResult, result);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
}