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

                Task <Student> task = testOperations.ReadMappedAsync(id: 69);
                Assert.IsNotNull(task, "The Task returned must not be null");

                Student student = await task;
                Assert.IsNotNull(student, "The Student returned must not be null");
            },
                                     "The mapped read operation must be successful");
        }