Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. public class SpecialCaseTests
  2. {
  3. [Fact]
  4. public void MattElandShouldScoreMaxValue()
  5. {
  6. // Arrange
  7. var resume = new ResumeInfo("Matt Eland");
  8. var job = new JobInfo("Software Engineering Manager", "Some Company", 42);
  9. resume.Jobs.Add(job);
  10. var provider = new KeywordScoringProvider();
  11. var analyzer = new ResumeAnalyzer(provider);
  12.  
  13. // Act
  14. var result = analyzer.Analyze(resume);
  15.  
  16. // Assert
  17. Assert.Equal(int.MaxValue, result.Score);
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement