public void GetAllPermutationsOfEmptyString(string input, string[] expectedOutputStrings)
        {
            var actualOutput = _permutator.GetPermutationsOf(input);

            actualOutput.Should().BeEquivalentTo(expectedOutputStrings);
        }