Metria-Project / Metria-Test

0 stars 0 forks source link

suggestion of a test for the method _Clone in Ray #11

Open cyromd opened 6 years ago

cyromd commented 6 years ago

under this input: Ray=(P,Q) P=(3,0) Q=(9,4) the following output: Ray(A,B) A=(3,0) B=(9,4) is supposed to be seen under this input:

Ray=(P,Q) P=(7,1) Q=(7,9) the following output: Ray(A,B) A=(7,1) B=(7,9) is supposed to be seen

Supitto commented 6 years ago

===

Code _62 Place _2_hyperbolic_Ray.cs Process Create a ray from (3,0) to (9,4) and call it r Clone r and call it c Check c == r

Code _63 Place _2_hyperbolic_ray.cs Process Create a ray from (7,1) to (7,9) and call it r Clone r and call it c Check c == r

cyromd commented 6 years ago

OK