You are the same guy that asked about how to create class library,
The project you use compiles into dll assembly and provide a set of classes with implemented functionality.
You should add to your solution new project with Output Type either
Console Application or Windows Application (VS Add Project wizard will
offer you different templates of Projects).
In newly added project you can implement logic to test your Class Library.
Output type of the project you can find and change by the following steps:
-
Right click on project in Solution Explorer -> Properties.
-
In opened tab with properties select Application and there will be ComboBox marked with Output Type label.
Thanks