public void CheckBusinessUserTest()
 {
     UserInfoManager target = new UserInfoManager(); // TODO: Initialize to an appropriate value
     string userName = string.Empty; // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     int UserId = InsertDummyBusinessUser("tj_op_business2");
     actual = target.CheckBusinessUser("tj_op_business2");
     Assert.AreEqual(UserId, int.Parse(actual));
     //Assert.Inconclusive("Verify the correctness of this test method.");
 }