public void OutputBillOfMaterials_OutputToConsoleTrue_OutputsToConsole()
        {
            // Arrange
            mockSystemSettingsWrapper.Setup(x => x.OutputToConsole).Returns(true);

            // Act
            outputManager.OutputBillOfMaterials(new BillOfMaterials());

            // Assert
            mockConsoleOutput.Verify(x => x.OutputBillOfMaterials(It.IsAny <BillOfMaterials>()), Times.Once, "Expected bill to have been output");
        }