public void TestCreateNewItemCategory()
        {
            // arrange
            ItemCategory itemCategory = new ItemCategory()
            {
                ItemCategoryID = "Tool",
                Description    = "Tool Description."
            };
            bool created        = false;
            bool expectedResult = true;

            // act
            created = _itemCategoryManager.createNewItemCategory(itemCategory);

            // assert
            Assert.AreEqual(expectedResult, created);
        }