Blog.Logic.Core.Tests.EducationLogicTest.TestInit C# (CSharp) Method

TestInit() private method

private TestInit ( ) : void
return void
        public void TestInit()
        {
            #region Educations

            _educations = new List<Education>
                     {
                         new Education
                         {
                             EducationId = 1,
                             EducationType = new EducationType(),
                             City = "Foo",
                             State = "Bar",
                             Country = "Baz",
                             Course = "Fudge",
                             UserId = 1
                         },
                         new Education
                         {
                             EducationId = 2,
                             EducationType = new EducationType(),
                             City = "Lorem",
                             State = "Ipsum",
                             Country = "Dolor",
                             Course = "Sit Amet",
                             UserId = 1
                         },
                         new Education
                         {
                             EducationId = 3,
                             EducationType = new EducationType(),
                             City = "Stack",
                             State = "Pepper",
                             Country = "Cheese",
                             Course = "Pizza",
                             UserId = 2
                         }
                     };

            #endregion
        }