Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save yohey03518/9ccd4e47c615bf7d592bbc6a11299f53 to your computer and use it in GitHub Desktop.
Save yohey03518/9ccd4e47c615bf7d592bbc6a11299f53 to your computer and use it in GitHub Desktop.
LeetCode_Algorithms_2_Add_Two_Numbers_TestInit
[TestClass]
public class No2Test_AddTwoNumbers
{
private No2_AddTwoNumbers solution;
[TestInitialize]
public void Init()
{
solution = new No2_AddTwoNumbers();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment