public async Task CreateApprenticeshipEvent()
        {
            var input           = new ApprenticeshipEvent();
            var employerRequest = new TestRequest(new Uri(ExpectedApiBaseUrl + $"api/events/apprenticeships"), JsonConvert.SerializeObject(input));

            _fakeHandler.AddFakeResponse(employerRequest, new HttpResponseMessage {
                StatusCode = HttpStatusCode.OK, Content = new StringContent(string.Empty)
            });
            await _sut.CreateApprenticeshipEvent(input);

            Assert.Pass();
        }