private static void Test(string expectedExpression, string expression)
        {
            // Create expression node
            ExpressionSyntax expressionNode = SyntaxFactory.ParseExpression(expression);

            // Generate
            ITranslationUnit translationUnit = new ExpressionTranslationUnitBuilder(expressionNode).Build();
            string           translation     = translationUnit.Translate();

            // Asserting
            Assert.AreEqual(expectedExpression, translation,
                            $"Expression '{translation}' does not match with expected '{expectedExpression}'");
        }