public void Should_add_TrackExceptionsFilterAttribute_to_Mvc_filters()
            {
                // Arrange
                var options          = new MvcOptions();
                var expectedTypeName = typeof(TrackExceptionsFilterAttribute).Name;

                // Act
                options.ConfigureForEvolveApplicationInsights();

                // Assert
                var filter = options.Filters.FirstOrDefault();

                Assert.Equal(1, options.Filters.Count);
                Assert.NotNull(filter);
                var typeFilterAttribute = Assert.IsType <TypeFilterAttribute>(filter);

                Assert.Equal(expectedTypeName, typeFilterAttribute.ImplementationType.Name);
            }