I have the following method in C#.
public void LoadFromDataSet(DataSet dataset)
{
if (dataset == null)
return;
LoadDynamicForm(dataset);
LoadDynamicFormFields(dataset);
}
I would like to unit test the first 2 lines using the Microsoft Uni testing framework. How should I go about it?