public void DuplicateCharacterCount(string input, int twoCount, int threeCount) { // Arrange var sut = new Day02(); // Act var result = sut.DuplicateCharacterCount(input); // Assert result.Item1.Should().Be(twoCount); result.Item2.Should().Be(threeCount); }