Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created September 7, 2019 16:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IntegerMan/65537cd19e79a306171c7ea37fc7ade8 to your computer and use it in GitHub Desktop.
Save IntegerMan/65537cd19e79a306171c7ea37fc7ade8 to your computer and use it in GitHub Desktop.
using Shouldly;
public class SpecialCaseTests
{
[Fact]
public void MattElandShouldScoreMaxValue()
{
// Arrange
var resume = new ResumeInfo("Matt Eland");
var job = new JobInfo("Software Engineering Manager", "Some Company", 42);
resume.Jobs.Add(job);
var provider = new KeywordScoringProvider();
var analyzer = new ResumeAnalyzer(provider);
// Act
var result = analyzer.Analyze(resume);
// Assert
result.Score.ShouldBe(int.MaxValue);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment