public void CanReadAllMappedAsync()
        {
            Assert.DoesNotThrowAsync(async() =>
            {
                IDataOperations testOperations = CreateOperationsInterface();

                Task <IEnumerable <Student> > task = testOperations.ReadAllMappedAsync();
                Assert.IsNotNull(task, "The Task returned must not be null");

                IEnumerable <Student> students = await task;
                Assert.IsNotNull(students, "The enumeration returned must not be null");
            },
                                     "The mapped read all operation must be successful");
        }