' Licensed to the .NET Foundation under one or more agreements. ' The .NET Foundation licenses this file to you under the MIT license. ' See the LICENSE file in the project root for more information. Namespace Microsoft.CodeAnalysis.Editor.VisualBasic.UnitTests.RemoveUnnecessaryCast Partial Public Class RemoveUnnecessaryCastTests Public Async Function TestFixAllInDocument() As Task Dim input = Assembly1 .ToString() Dim expected = Assembly1 .ToString() Await TestInRegularAndScriptAsync(input, expected) End Function Public Async Function TestFixAllInProject() As Task Dim input = Assembly1 .ToString() Dim expected = Assembly1 .ToString() Await TestInRegularAndScriptAsync(input, expected) End Function Public Async Function TestFixAllInSolution() As Task Dim input = Assembly1 .ToString() Dim expected = Assembly1 .ToString() Await TestInRegularAndScriptAsync(input, expected) End Function End Class End Namespace