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
These tests all use a constructor for the map that is causing significant tech debt. This constructor will be depreciated in phase 3 and these tests will need to be rewritten properly.
Note, some of you are using global variables in multiple tests. This can cause dependency issues due to the asynchronous nature of the Juinit runner. Each test should run in complete isolation, to set up a test environment multiple times, an @BeforeAll and @AfterAll tag can be used to construct and destruct the environment.
The text was updated successfully, but these errors were encountered:
DirectionFollowAgentTest
@Jolijn2020RayFeedbackTest
@MatthewFoster02WallFollowAgentTest
@laurajogiThese tests all use a constructor for the map that is causing significant tech debt. This constructor will be depreciated in phase 3 and these tests will need to be rewritten properly.
Note, some of you are using global variables in multiple tests. This can cause dependency issues due to the asynchronous nature of the Juinit runner. Each test should run in complete isolation, to set up a test environment multiple times, an
@BeforeAll
and@AfterAll
tag can be used to construct and destruct the environment.The text was updated successfully, but these errors were encountered: