Open aalamu opened 2 months ago
Write a unit test for Role and test cases for nullability, non-nullability, equality and non-equality.
Role
Role is found in com.fleencorp.feen.model.domain.user
com.fleencorp.feen.model.domain.user
How we should write and our style can be found here Code Guidelines for IDE
@Test case method names should be in snake case format. For example
@Test
ensure_access_token_is_not_null is correct ensureAccessTokenIsNotNull is incorrect
ensure_access_token_is_not_null
ensureAccessTokenIsNotNull
Test class should followed pattern and styles as found in the FleenFeenEntityTest and Oauth2AuthorizationTest which are located in the test folder
FleenFeenEntityTest
Oauth2AuthorizationTest
Description
Write a unit test for
Role
and test cases for nullability, non-nullability, equality and non-equality.Notes:
Role
is found incom.fleencorp.feen.model.domain.user
How we should write and our style can be found here Code Guidelines for IDE
@Test
case method names should be in snake case format. For exampleensure_access_token_is_not_null
is correctensureAccessTokenIsNotNull
is incorrectTest class should followed pattern and styles as found in the
FleenFeenEntityTest
andOauth2AuthorizationTest
which are located in the test folder