First of all, I know there is a lot of questions about this topic. I've read most of them, but I really don't know whether it's lack of proper OO programming, or if I'm missing something.
So I have a class xmlRead that reads in an XML file into some lists. I want to unit test this class. I reckon the easiest way to start of is to test addDataToList(). But that's a private method. So I'm wondering if I should make it public, or test the public method ReadTheXmlFile().
public class xmlRead
{
List<string> ... // A couple of lists that need to filled with data from the XML document
xmlDocument xDoc = new xmlDocument
public void ReadTheXmlFile()
{
// Find default file, if it doesn't exist, ask user for file through Openfiledialog
// and open XMLDocument + error handling if XMLdocument is empty etc.
xDoc.load(filepath);
takeInXmlData();
}
private void takeInXmlData()
{
addDataToList(list<string> list1, xmlNode 1);
// More addDataToList for different lists
...
addDataToList(list<string> list2, xmlNode 2);
}
private void addDataToList(list<string> inputList, xmlNode)
{
foreach (XmlNode node in xmlDoc.SelectNodes(xmlNode))
{
inputList.Add(node.SelectSingleNode("Specific name of node").InnerText);
}
}
So I tried to separate things as much as possible. But this also means my method addDataToList is very small, but easy to unit test. But I also feel it shouldn't be a public method either. I could of course test the public method ReadTheXmlFile(), but then I'd have to make specific test cases for each outcome of error detection, and in my opinion I wouldn't properly test the actual intake of data into the list.
Am I just too overprotective and should I make addDateToList (or takeInXmlData) public? Or should I just test the public method ReadTheXmlFile until I've taken into account all the possible ways?
It just feels like a lot of work, which sort of goes against the principle of short, simple unit tests.
PS: No need to worry about the fact that I load xDoc directly here, I have an Interface that manages the loading of the XML document (which I can stub later to break the dependencies). The focus is on the private methods here.