You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Configuring the environment (with for example Gradle v3.3).
Importing the junit .jar files, so we can run junit test cases.
Act:
Making an instance of Move Class with the following parameters:
type=6
the other parameters can be anything.
Assert:
The constructor will handle that the type is not 0, 1, 2 or 3 (because there are only 4 types of moves, written by the javadoc to the Move class. They can 0=Accurate, 1=Wide, 2=Crit and 3=Healing).
Excepting:
We got an exception or a warning that we cannot make a new Move with a type of 6.
Actually:
We can freely make a new "move" with the type of 6, and we do not get any warning.
The text was updated successfully, but these errors were encountered:
Arrange:
Act:
Assert:
Excepting:
Actually:
The text was updated successfully, but these errors were encountered: