Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch statement implemented for operation selection #7

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
unit test and other files setup
jessicakilby committed Feb 2, 2017
commit 378f804e3cd15b96dd72b417e8c92fd1f48925bf
14 changes: 14 additions & 0 deletions SimpleCalculator.Tests/AdditionTests.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace SimpleCalculator.Tests
{
[TestClass]
public class AdditionTests
{
[TestMethod]
public void TestMethod1()
{
}
}
}
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
namespace SimpleCalculator.Tests
{
[TestClass]
public class UnitTest1
public class ModulusTests
{
[TestMethod]
public void TestMethod1()
14 changes: 14 additions & 0 deletions SimpleCalculator.Tests/MultiplicationTests.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace SimpleCalculator.Tests
{
[TestClass]
public class MultiplicationTests
{
[TestMethod]
public void TestMethod1()
{
}
}
}
15 changes: 15 additions & 0 deletions SimpleCalculator.Tests/SubtractionTests.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace SimpleCalculator.Tests
{
[TestClass]
public class SubtractionTests
{
[TestMethod]
public void MakeSureWeCanCreateAnInstance()
{

}
}
}
12 changes: 12 additions & 0 deletions SimpleCalculator/Addition.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace SimpleCalculator
{
class Addition
{
}
}
12 changes: 12 additions & 0 deletions SimpleCalculator/Integer.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace SimpleCalculator
{
class Integer
{
}
}
12 changes: 12 additions & 0 deletions SimpleCalculator/Modulus.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace SimpleCalculator
{
class Modulus
{
}
}
12 changes: 12 additions & 0 deletions SimpleCalculator/Multiplication.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace SimpleCalculator
{
class Multiplication
{
}
}
12 changes: 12 additions & 0 deletions SimpleCalculator/Subtraction.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace SimpleCalculator
{
class Subtraction
{
}
}