자바 유닛 테스트 의 표준 쓰기
So let’s do it the same way, this will make us more professional.
- /**
-
- * Test method for {@link com.bleum.canton.ca.category.dao.impl.CategoryDao#updateCategory(com.bleum.canton.ca.category.entity.Category)}.
-
- */
-
- @Test
-
- public void testUpdateCategory() {
-
- assertTrue(applicationContext !=null);
-
- assertTrue (categoryDao !=null);
-
-
-
- //create a root category
-
- Category rootCat = new Category();
-
- rootCat.setCategoryCode("rootCat1234567");
-
- rootCat.setCategoryName("TestRootCategory");
-
- rootCat.setStatus(1);
-
- rootCat.setLevel(1);
-
- rootCat.setVersion(0.1f);
-
- rootCat.setCreatedBy("charles.wang");
-
- rootCat.setLastModifiedBy("charles.wang");
-
- rootCat.setParentID("0");
-
- Timestamp today = new Timestamp(System.currentTimeMillis());
-
- rootCat.setCreatedDate(today );
-
- rootCat.setLastModifiedDate(today);
-
-
-
-
-
- //add this category
-
- categoryDao.addCategory(rootCat);
-
-
-
-
-
-
-
- //get the category that we need to update
-
- Category needToUpdateCategory =categoryDao.findCategoryByCategoryCode("rootCat1234567");
-
- assertNotNull(needToUpdateCategory);
-
-
-
- ////////////////////////////////////
-
- //the method that needs to be tested
-
-
-
- //we update this category
-
- needToUpdateCategory.setCategoryName("TestRootCategoryRename");
-
- categoryDao.updateCategory(needToUpdateCategory);
-
-
-
- //to conclusion whether the category has been updated
-
- Category afterUpdatedCategory =categoryDao.findCategoryByCategoryCode("rootCat1234567");
-
- assertNotNull(afterUpdatedCategory);
-
- String newCategoryName = afterUpdatedCategory.getCategoryName();
-
- assertTrue("TestRootCategoryRename".equals(newCategoryName));
-
-
-
- //remove this test category from the database
-
- categoryDao.delCategoryByCategoryCode("rootCat1234567");
-
- }
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
양식 제출 후 제출 버튼 비활성화텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.