-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathBaseClassExposedToTest.cs
More file actions
37 lines (33 loc) · 1.05 KB
/
BaseClassExposedToTest.cs
File metadata and controls
37 lines (33 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
using AppInsights.EnterpriseTelemetry;
using Microsoft.Extensions.Configuration;
using Microsoft.FeatureFlighting.API.Controllers;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Microsoft.FeatureFlighting.API.Tests.ControllerTests
{
[ExcludeFromCodeCoverage]
[TestClass]
public class BaseClassExposedToTest:BaseController
{
public BaseClassExposedToTest(IConfiguration configuration, ILogger logger) : base(configuration, logger)
{
}
public Tuple<string, string, string, string, string> GetHeaders()
{
return base.GetHeaders();
}
public string GetHeaderValue(string headerKey, string defaultValue)
{
return base.GetHeaderValue(headerKey, defaultValue);
}
public string GetHeaderValue(string headerName)
{
return base.GetHeaderValue(headerName);
}
}
}