I have a custom configuration section, something like:
<fooSection>
<foo>
<add bar="cow" />
<add bar="dog" />
<add bar="goat" />
</foo>
</fooSection>
I'm trying to figure out how I can add/edit this section in the app.config
file in a test fixture setup. I don't really know where to start, but an obvious problem is that my ConfigurationSection
does not expose any setters.