Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created September 7, 2019 16:42
Embed
What would you like to do?
using Shouldly;
public class MonthsInJobTests : ResumeTestsBase
{
[Fact]
public void FiveMonthsInJobShouldScoreAFive()
{
// Arrange
var resume = new ResumeInfo(Faker.Name.FullName);
resume.Jobs.Add(CreateRandomJob(5));
// Act
var result = Analyze(resume);
// Assert
result.Score.ShouldBe(5);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment