public void ConvertHousingStatusFromCaseflowTest()
        {
            Assert.AreEqual(string.Empty, _helper.ConvertHousingStatusFromCaseflow(null));
            Assert.AreEqual(string.Empty, _helper.ConvertHousingStatusFromCaseflow(""));
            Assert.AreEqual(string.Empty, _helper.ConvertHousingStatusFromCaseflow("testing..."));

            Assert.AreEqual("homeowner", _helper.ConvertHousingStatusFromCaseflow("owner"));
            Assert.AreEqual("homeowner", _helper.ConvertHousingStatusFromCaseflow("Owner"));
            Assert.AreEqual("mortgage", _helper.ConvertHousingStatusFromCaseflow("mortgage"));
            Assert.AreEqual("mortgage", _helper.ConvertHousingStatusFromCaseflow("Mortgage"));
            Assert.AreEqual("homeless", _helper.ConvertHousingStatusFromCaseflow("homeless"));
            Assert.AreEqual("homeless", _helper.ConvertHousingStatusFromCaseflow("Homeless"));
            Assert.AreEqual("tenant-private", _helper.ConvertHousingStatusFromCaseflow("tenant - private"));
            Assert.AreEqual("tenant-private", _helper.ConvertHousingStatusFromCaseflow("Tenant - Private"));
            Assert.AreEqual("tenant-social", _helper.ConvertHousingStatusFromCaseflow("tenant - social"));
            Assert.AreEqual("tenant-social", _helper.ConvertHousingStatusFromCaseflow("Tenant - Social"));
            Assert.AreEqual("living-with-parents", _helper.ConvertHousingStatusFromCaseflow("living with parents"));
            Assert.AreEqual("living-with-parents", _helper.ConvertHousingStatusFromCaseflow("Living With Parents"));
            Assert.AreEqual("Illness/Disability related", _helper.ConvertHousingStatusFromCaseflow("illness/disability related"));
            Assert.AreEqual("Illness/Disability related", _helper.ConvertHousingStatusFromCaseflow("Illness/Disability Related"));
            Assert.AreEqual("other", _helper.ConvertHousingStatusFromCaseflow("other"));
            Assert.AreEqual("other", _helper.ConvertHousingStatusFromCaseflow("Other"));
        }