Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Only need help with part #5, creating tests For this activity, you will create a Word Occurrence Calculator. Create a Windows Forms Application that contains

image text in transcribed

Only need help with part #5, creating tests

For this activity, you will create a Word Occurrence Calculator. Create a Windows Forms Application that contains a multi-line TextBox control (Input), a Button control (Calculate), and a Label control (Result). Your application will allow the user to enter text into the multi-line TextBox, and will calculate the number of occurrences of each unique word in the TextBox. Each unique word along with its number of occurrences will be displayed on a single line in the Result label. 1. Create a new Windows Forms Application 2. Add a class to your project named "WordOccurrence", with the following properties: Word (string) Count (integer) 3. Add a class named "WordCalculator" to your project. Add the following static method to your WordCalculator class: CalculateOccurrences: This method will take a list of strings as input, and will return a list of "Word Occurrence" items. If passed a null or empty list as input, it will throw a new exception with the message "Invalid input". 4. In your main form add the following controls: A multi-line Input TextBox A Calculate Button A Result Label Implement a handler for the button click event, that will take the text in textbox, split it into a list of words, and pass it to WordCalculator, then display the result list of the WordOccurrence list in the label. Each WordOccurrence item will be on a separate line. 5. Using what you learned in this module about unit testing: Create a new test project (class library) that will test your WordCalculator class Add NUnit to your test project using NuGet package management Create a new test class, decorate it with the TestFixture attribute Add 2 tests: o CalculateOccurrencesTest: this will pass a defined list of words (you define it), and will assert that the returned result is correct. o Calculate OccurrencesShouldThrowException: this test will pass null to the method and will assert that this method will throw an exception (refer to NUnit documentation on how to assert for c# using .net. thanks! For this activity, you will create a Word Occurrence Calculator. Create a Windows Forms Application that contains a multi-line TextBox control (Input), a Button control (Calculate), and a Label control (Result). Your application will allow the user to enter text into the multi-line TextBox, and will calculate the number of occurrences of each unique word in the TextBox. Each unique word along with its number of occurrences will be displayed on a single line in the Result label. 1. Create a new Windows Forms Application 2. Add a class to your project named "WordOccurrence", with the following properties: Word (string) Count (integer) 3. Add a class named "WordCalculator" to your project. Add the following static method to your WordCalculator class: CalculateOccurrences: This method will take a list of strings as input, and will return a list of "Word Occurrence" items. If passed a null or empty list as input, it will throw a new exception with the message "Invalid input". 4. In your main form add the following controls: A multi-line Input TextBox A Calculate Button A Result Label Implement a handler for the button click event, that will take the text in textbox, split it into a list of words, and pass it to WordCalculator, then display the result list of the WordOccurrence list in the label. Each WordOccurrence item will be on a separate line. 5. Using what you learned in this module about unit testing: Create a new test project (class library) that will test your WordCalculator class Add NUnit to your test project using NuGet package management Create a new test class, decorate it with the TestFixture attribute Add 2 tests: o CalculateOccurrencesTest: this will pass a defined list of words (you define it), and will assert that the returned result is correct. o Calculate OccurrencesShouldThrowException: this test will pass null to the method and will assert that this method will throw an exception (refer to NUnit documentation on how to assert for c# using .net. thanks

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Professional SQL Server 2000 Database Design

Authors: Louis Davidson

1st Edition

1861004761, 978-1861004765

More Books

Students also viewed these Databases questions

Question

Find the Laplace Transform of the function F(t) = te-at g (t-1)

Answered: 1 week ago

Question

Define TRA, or total rewards package.

Answered: 1 week ago

Question

What about leadership lessons from particularly good or bad bosses?

Answered: 1 week ago

Question

How would you assess the value of an approach like this?

Answered: 1 week ago

Question

When would you use one approach, and when would you use another?

Answered: 1 week ago