thomasrockhu / customer-tests-excel

A framework to round trip NUnit to / from Microsoft Excel customer tests

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Customer Tests Excel

Build status

codecov

Maintainability

A framework to round trip NUnit to / from Microsoft Excel customer tests.

Created as a replacment for Fitnesse. RES is primarily a science and engineering company, and due to the calculation heavy nature of the work, none of the existing customer test frameworks are a good fit.

Advantages

  • Tests are expressed in Microsoft Excel Spreadsheets, which our customers are familiar with, and which support any complexity of calculation
  • Tests are converted to C# / NUnit, and make use of existing tooling (which aids debugging, coverage, Continuous Integration etc)
  • Automated refactoring can be done in C#, using existing tooling, and then the changes written back to Excel
  • The NUnit tests are generated from Excel, so the two are guaranteed to be in sync
  • Most scaffolding code can be generated, you usually only need to supply the code to call your system under test

Usage

The easiest way to get started is to use the scaffolding project.

However you can do it manually

  • Create a new project (.csproj) for the Customer Tests
  • Install the Nuget Package CustomerTestsExcel
  • Install the Nuget Package CustomerTestsExcel
  • Create an ExcelTests folder within the Customer Test project folder
  • Create an Excel Spreadsheet in the ExcelTests subfoloder, with a Test (see below for format).
  • Run GenerateCodeFromExcelTest.exe to create / update the C# test project
  • For example GenerateCodeFromExcelTest.exe /folder "CustomerTests" /project CustomerTests.csproj /namespace CustomerTests /usings "SystemUnderTest" /assertionClassPrefix "I"
  • GenerateCodeFromExcelTest.exe will be in the tools folder of the nuget package (for example CustomerTestsExcel.1.0.1\tools)
  • /folder is the folder of the Customer Test project relative to the current working directory
  • /project is the name of the project
  • `/namespace' is the namespace to use for the tests
  • /usings' is space delimited list of namespaces that will be added as using` statements to the tests
  • /assertionClassPrefix is added to the Excel assertion type names when creating the C# names.
  • Open the Customer Test project in Visual Studio (For example SampleTests\SampleTests.csproj)
  • Put any custom code under a IgnoreOnGeneration folder, so that it will remain when the test project is regenerated.
  • To create the Excel Spreadsheet from the C# code (should you need to)
    • Set a CUSTOMER_TESTS_EXCEL_WRITE_TO_EXCEL environment variable to true
    • Set a CUSTOMER_TESTS_RELATIVE_PATH_TO_EXCELTESTS environment variable from the Output Folder (for example bin\debug) to the ExcelTests folder
    • Run the tests

See the SampleTests and SampleSystemUnderTest projects for examples.

The Excel test for the Rerouting example (SampleTests/ExcelTests/Rerouting.xlsx) looks like this:

Example Excel Test

Building Locally

  • CustomerTestsExcel.sln

Build Server (private to RES)

End to End testing

The SampleTests project performs both documentation and End to End testing

During the AppVeyor build, the SampleTests Excel spreadsheets are converted in to C# tests, these tests are then run to re-create the spreadsheets, and then the spreadsheets are converted back in to C# again. This ensures that all the conepts contained within the spreadsheets are round trippable.

Deploying the Nuget Package

Click "Deploy" on the relevant AppVeyor build if you have access to it.

Otherwise

  • msbuild.exe CustomerTestsExcel.sln /p:Configuration=Release
  • nuget restore
  • nuget pack CustomerTestsExcel.csproj -build
  • push .nupkg to a feed

About

A framework to round trip NUnit to / from Microsoft Excel customer tests

License:MIT License


Languages

Language:C# 99.4%Language:CSS 0.4%Language:Batchfile 0.2%