' Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. Imports Microsoft.CodeAnalysis.VisualBasic.Syntax Imports Roslyn.Test.Utilities Namespace Microsoft.CodeAnalysis.VisualBasic.UnitTests.Semantics Partial Public Class IOperationTests Inherits SemanticModelTestBase Public Sub ExplicitSimpleArgument() Dim source = .Value Dim expectedOperationTree = .Value VerifyOperationTreeForTest(Of InvocationExpressionSyntax)(source, expectedOperationTree) End Sub Public Sub ExplicitSimpleArgumentByName() Dim source = .Value Dim expectedOperationTree = .Value VerifyOperationTreeForTest(Of InvocationExpressionSyntax)(source, expectedOperationTree) End Sub Public Sub DefaultArgument() Dim source = .Value Dim expectedOperationTree = .Value VerifyOperationTreeForTest(Of InvocationExpressionSyntax)(source, expectedOperationTree) End Sub Public Sub ParamArrayArgument() Dim source = .Value Dim expectedOperationTree = .Value VerifyOperationTreeForTest(Of InvocationExpressionSyntax)(source, expectedOperationTree) End Sub End Class End Namespace