Steps to reproduce: 1. Execute App.java 2. Make any valid moves Expected Results: For example, first move is d4, the console should print the following board state: ABCDEFGH 0 RNBQNBNR 1 PPP PPPP 2 3 P 4 5 6 pppppppp 7 rnbqnbnr Actual Result: The console outputs: ABCDEFGH 0 RNBKNBNR 1 PPP PPPP 2 3 P 4 5 6 pppppppp 7 rnbknbnr
Reason: Notation for queen was incorrect, it was "n" and "N" for black and white queen respectively, while it should be "q" and "Q". Resolution: Modify the notation for queen to "q" and "Q" for black and white players in Queen.java.
https://github.com/glennsalter/cs3343-chess/commit/65d7edc0be45966ec6d5592a0b162818ca6ed220