public void GetByFilterTest()
        {
            CountriesManager target = new CountriesManager(); // TODO: Initialize to an appropriate value
            CountriesFilter filter = null; // TODO: Initialize to an appropriate value
            filter.Code = TEST_CODE;
            List<Country> actual;

            actual = target.GetByFilter(filter, "");
            Assert.IsTrue(actual[0].Code == TEST_CODE);
            //Assert.AreEqual(expected, actual);
            //Assert.Inconclusive("Verify the correctness of this test method.");
        }