diff -r 940b6c68102a -r 72688efdf17c testing3/testing3-bak/knight1b_test.scala --- a/testing3/testing3-bak/knight1b_test.scala Thu Oct 31 11:33:02 2019 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ - -assert(CW7a.legal_moves(8, Nil, (2,2)) == - List((3,4), (4,3), (4,1), (3,0), (1,0), (0,1), (0,3), (1,4))) -assert(CW7a.legal_moves(8, Nil, (7,7)) == List((6,5), (5,6))) -assert(CW7a.legal_moves(8, List((4,1), (1,0)), (2,2)) == - List((3,4), (4,3), (3,0), (0,1), (0,3), (1,4))) -assert(CW7a.legal_moves(8, List((6,6)), (7,7)) == List((6,5), (5,6))) -assert(CW7a.legal_moves(1, Nil, (0,0)) == List()) -assert(CW7a.legal_moves(2, Nil, (0,0)) == List()) -assert(CW7a.legal_moves(3, Nil, (0,0)) == List((1,2), (2,1))) -