Created
July 6, 2023 13:58
-
-
Save ArunYogeshwaran/bf630b4869cc2fe39cb5645b6e4d8081 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// A test with relevant details in the test itself. | |
@Test | |
fun `get ML recommended jobs with new user expect predefined list`() { | |
// Test arrangements and setup. | |
val engine = getRecommendationEngine() | |
val jobs = engine.getJobs(new User(UserStatus.FAIRLY_NEW, "testId", "Test User Name")) | |
assertThat(jobs).isEqualTo(expectedJobs) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment