We decided to enable code coverage metrics and now we're customizing settings to include/exclude different things. We have some classes that look like following:
public class MyOptions
{
public string SomeConfigValue { get; set; }
}
And code coverage for this class is 0%. My first thought was to exclude this class from code coverage at all as there is actually nothing to cover here and it's just a settings file.
What are best practices on what to include and especially exclude from code coverage?