@Test @DataSet public void testUpdateAccount() { Account account = new Account(); account.setId(1); account.setAccountname("abc"); account.setSaccountid(1); accountService.updateWithSession(account, "hai79"); accountService.findById(1, 1); Assert.assertEquals("abc", account.getAccountname()); }
@Test @DataSet public void testUpdateAccount() { Account account = new Account(); account.setId(1); account.setAccountname("abc"); account.setSaccountid(1); accountService.updateWithSession(account, "hai79"); SimpleAccount simpleAccount = accountService.findById(1, 1); assertThat(simpleAccount.getAccountname()).isEqualTo("abc"); assertThat(simpleAccount.getIndustry()).isEqualTo(null); }