Metria-Project / Metria-Test

0 stars 0 forks source link

suggestion of a test in Line for the Clone (REWRITE TEST) #18

Open cyromd opened 6 years ago

cyromd commented 6 years ago

under this input: line(A,B) A=(-3,0) B=(-9,0) the following output: line(A,B) A=(-3,0) B=(-9,0) is supposed to be seen

under this input: line(A,B) A=(4,3) B=(5,2sqrt(2)) the following output: line(A,B) A=(4,3) B=(5,2sqrt(2)) is supposed to be seen

under this input: line(A,B) A=(2,5) B=(2,2) the following output: line(A,B) A=(2,5) B=(2,2) is supposed to be seen

Supitto commented 6 years ago

===

Code _93 Place _2_hyperbolic_line.cs Process Create a line from (-3,0) to (-9,0) and call it l Clone l and call it r Check l == r

===

Code _94 Place _2_hyperbolic_line.cs Process Create a line from (4,3) to (5,2sqrt(2) and call it l Clone l and call it r Check l == r

===

Code _95 Place _2_hyperbolic_line.cs Process Create a line from (2,5) to (2,2) and call it l Clone l and call it r Check l == r

cyromd commented 6 years ago

OK