Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

c++ help please! much appreciated! need a .cpp and .hpp file that can successfully run through these tests, thank you very much! printed below to

c++ help please! much appreciated!

need a .cpp and .hpp file that can successfully run through these tests, thank you very much!

printed below to be able to copy/paste into compiler

#include "catch/catch.hpp" #include "../polygon.hpp"

TEST_CASE ("Polygon tests") { // polygon with 0 vertices Polygon empty;

// prepare list of points to create square Point points[] = {Point(0,0), Point(0,2), Point(2,2), Point(2,0)}; Polygon square("My square", points, 4);

SECTION ("Default Constructor") { CHECK(0 == empty.GetVertexCount()); CHECK("" == empty.GetName()); }

SECTION ("Parameterized Constructor") { CHECK(4 == square.GetVertexCount()); CHECK("My square" == square.GetName()); }

SECTION ("Ensure object copy/assignment are not shallow") { Polygon otherSquare = square; CHECK(true == otherSquare.Contains(Point(1,1)));

// update second square to somewhere in quadrant 3 Point points[] = {Point(-1,-1), Point(-1,-3), Point(-3,-3), Point(-3,-1)}; otherSquare = Polygon("Other square", points, 4); CHECK(true == otherSquare.Contains(Point(-2,-2)));

// ensure that updating one didn't impact the other CHECK(true == square.Contains(Point(1,1)));

// Verify reassigning to self isn't broken otherSquare = otherSquare; CHECK(true == otherSquare.Contains(Point(-2,-2))); } }

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

Big Data, Mining, And Analytics Components Of Strategic Decision Making

Authors: Stephan Kudyba

1st Edition

1466568704, 9781466568709

More Books

Students also viewed these Databases questions

Question

2. (1 point) Given AABC, tan A b b

Answered: 1 week ago

Question

1. Select the job or jobs to be analyzed.

Answered: 1 week ago