unit testing a static Main() method in c# -
i trying write unit tests using visual studio unit testing framework static main method, entry point application. have method follows.
public static void main() { structuremapbootstrapper.register(); setupfilter<applicant>(); }
and calls generic setupfilter method
private static void setupfilter<t>() t : idatafilterbase, new() { var filtername = typeof(t).name; if ("startreceiver".trygettrueorfalseconfigvalue(filtername)) { objectfactory.configure(x => x.for<idatafilterbase>().use<t>()); var filter = new t(); filter.startreceiver(); loghelper.loginfo(string.format("started {0} filter service", filtername)); } else { loghelper.loginfo(string.format("{0} filter service not started. startreceiver flag set false", filtername)); } }
first thing came mind use moq , verify setupfilter method called @ least once compiler complained on method being static. idea on how write test method? how set using vs-unit testing framework , need assert?
in opinion have small refactor of code:
public class myclass { public static void main() { (new myclass()).run(); } public void run() { structuremapbootstrapper.register(); setupfilter<applicant>(); } }
then can test normal method instead of static
Comments
Post a Comment