Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created November 22, 2017 05:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save debugmodedotnet/14978d2c437c5858d2f6915031afd862 to your computer and use it in GitHub Desktop.
Save debugmodedotnet/14978d2c437c5858d2f6915031afd862 to your computer and use it in GitHub Desktop.
using Microsoft.VisualStudio.TestTools.UnitTesting;
using calculatorapp.services;
namespace CalculatorApp.Services.Tests
{
[TestClass]
public class CalculatorTest
{
Calculator _calc;
public CalculatorTest()
{
_calc = new Calculator();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment