forked from EricAyala21/CS2_Assignments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
80 lines (54 loc) · 1.27 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/**
* @author:
* @project:
* @purpose:
* @date:
*/
#include <iostream>
//------------------------------------------------------------------------------
//Files we are testing:
#include "includes/point/point.h"
//------------------------------------------------------------------------------
using namespace std;
void basic_test(bool debug=false);
void testB(bool debug=false);
int main()
{
// BASIC TEST
cout << "\n\n---------running basic_test---------\n\n";
basic_test();
cout << "\n\n------------- D O N E --------------\n\n";
// TEST B
cout << "\n\n-----------running testB------------\n\n";
testB();
cout << "\n\n------------- D O N E --------------\n\n";
return 0;
}
void basic_test(bool debug)
{
Point p1(5,4);
Point p2(1,1);
p1.Print();
cout << endl;
p2.Print();
cout << endl;
double d = p1.Distance(p2);
cout << "Distance between ";
p1.Print();
cout << " and ";
p2.Print();
cout << " is: " << d << endl;
}
void testB(bool debug)
{
// TODO: add more test here
}
/*
---------running basic_test---------
(5, 4)
(1, 1)
Distance between (5, 4) and (1, 1) is: 5
------------- D O N E --------------
-----------running testB------------
------------- D O N E --------------
*/