Skip to main content

Demo Project (NUnit Setup)



Steps--> 
1.Create a new project in console application.

2.Write the production code in a separate class file.I have written a regular calculator that can do addition, substraction, multiplication, division operation.

3.Add a new class library for test purpose.

4.Add a  reference to our production code from our test project.

5.Install NUnit3Test Adapter
Tools->Extensions and Updates->Online->NUnit3 Test Adpter

6.Install NUnit
Reference->Manage Nuget Packages->Online->Nunit

Now we can use NUnit’s attributes and NUnit asserts.

7.Under class library file write the test code using NUnit attributes.


 [TestFixture]

    public class RegularCalcultorTests

    {

        RegularCalculator calculator;

        [SetUp]

        public void BeforeEachTest()

        {

            calculator = new RegularCalculator();

        }

        [Test]

        public void TestAddition()

        {

           var result=calculator.Addition(10, 20);

            Assert.That(result, Is.EqualTo(30));

        }

        [Test]

        public void TestSubtraction()

        {

            calculator = new RegularCalculator();

            var result = calculator.Subtraction(50, 20);

            Assert.That(result, Is.EqualTo(30));

        }

        [Test]

        public void TestMultiplication()

        {

            calculator = new RegularCalculator();

            var result = calculator.Multiplication(10, 20);

            Assert.That(result, Is.EqualTo(200));

        }

        [Test]

        public void TestDivision()

        {

           calculator = new RegularCalculator();

            var result = calculator.Division(40, 20);

            Assert.That(result, Is.EqualTo(2));

        }


        [TearDown]

        public void AfterEachTest()

        {

            calculator = null;

        }

8.After build the code we can see the tests in test explorer and can run from it.


Comments

Popular posts from this blog

JIRA OverView

What is JIRA? JIRA is a project management tool used for issues and bugs tracking system for all types of testing.The JIRA dashboard consists of many useful functions and features which make handling of issues easy. The following points explain some interesting details of JIRA. • JIRA is an incident management tool. • JIRA is not an acronym, the name 'JIRA' comes from the Japanese word 'Gojira' • JIRA is developed by Australian Company Atlassian • JIRA is a platform independent tool; it can be used with any OS. • JIRA is multi-lingual tool − English, French, German, Japanese, Spanish, etc. • JIRA can be integrated with many other tools like GitHub, Team Foundation Software and many more. • JIRA is a commercial tool and available as a Trial version for a limited time. • To utilize JIRA services, a license is required. Features: JIRA is one the best product management tool which includes: Issue tracking & management: A software application that allows to...

Demo Project (Specflow Setup)

Installation and Setup Steps-->     1.Install SpecFlow for Visual Studio (Open Extensions and Updates) 2. Install SpecFlow NuGet Packages     3. Add Feature File    My Demo Project    Here, I have worked on following story    Story: Discounts on online shopping cart price for loyalty card customers    In order to increase the reward for loyal customers    I want to add 5-10% discounts on the final shopping cart price.    Scenario 1: 5% discount for loyalty card customer    Given a loyalty card customer in online checkout page    When the shopping card total is less than $100    Then 5% discount should be applied to the final shopping cart price.     Create Scenarios    In the feature file, I described what the feature needs to do Every scenario represents a different       ...