Posts

Showing posts from May, 2020

Using moq to test class that extends abstract class

Sometimes we've to test a class that extend an anstract class and use other components of the project. For example, we have a ExcelLoader that extend an abstract class Loader, that read an excel file and use data inserted in the file to send mail or send SMS to some users. ExcelLoader It's an important class of our project so it's usefull cover this class with some test, but could be difficult test the class with really instance of the components that send mail and SMS. So we want test only the behavior of ExcelLoader The code public abstract class Loader { public abstract void ImportFile(Stream stream); public abstract IEnumerable<RowFile> GetRows(Stream stream); } public class ExcelLoader : Loader { IMailManager mailManager; ISMSManager smsManager; public ExcelLoader(IMailManager mailManager, ISMSManager smsManager) { this.mailManager = mailManager; this.smsManager = sm

The power of SpecFlow

Writing test could be boring and stakeholders could know how your software should behave. SpecFlow could help you. It's a framework for BDD that uses an extension of Visual Studio that transforms the feature asked by user into code to test. SpecFlow allows you to write the behaviors in your native language and displays the data in a form like Excel table. Install SpecFlow You have to install the extension for Visual Studio in your test project. Install this package, nuget SpecFlow , SpecFlow.Tools.MsBuild.Generation , that will generate the code from our IDE and SpecFlow.xUnit ( if you're using xUnit) that will allow Visual Studio to find the test that specFlow will generate automatically. Background Suppose you want to create tests for a fruit and vegetable warehouse with online purchase. However, be careful to split the sections correctly and it is what I'd like to dwell on. Background is the section where you collect all tha