public void CanReadAllMapped()
        {
            Assert.DoesNotThrow(() =>
            {
                IDataOperations testOperations = CreateOperationsInterface();
                IEnumerable <Student> students = testOperations.ReadAllMapped();

                Assert.IsNotNull(students, "The enumeration returned must not be null");
            },
                                "The mapped read all operation must be successful");
        }