public void ReadSolution_NoFileName_ReturnsNull()
        {
            // Arrange
            SetSolutionFilePath(null);

            // Act
            var actual = testSubject.ReadSolutionBinding();

            // Assert
            actual.Should().BeNull();
            solutionMock.VerifyAll(); // check the solution interface was called with the correct args
        }