public void InschrijvingPostTest()
        {
            using (var repo = new InschrijvingRepositoryMock())
            {
                Assert.AreEqual(0, repo.TimesCalled);

                var target = new InschrijvingController(repo);

                target.Post(new Inschrijving()
                {
                });

                Assert.AreEqual(1, repo.TimesCalled);
            }
        }
        public void InschrijvingPostReturned200Test()
        {
            using (var repo = new InschrijvingRepositoryMock())
            {
                Assert.AreEqual(0, repo.TimesCalled);

                var target = new InschrijvingController(repo);

                dynamic result = target.Post(new Inschrijving()
                {
                });

                Assert.AreEqual(1, repo.TimesCalled);
                Assert.AreEqual(200, result.StatusCode);
            }
        }