public void ResolvePath_AssemblyReferenceHasTemplateVariable_AssemblyParserServiceIsNotUsed()
        {
            CreateResolver();
            string path         = @"$(SolutionDir)lib\Test.dll";
            string expectedPath = @"d:\projects\MyProject\lib\Test.dll";

            fakePathResolver.AddPath(path, expectedPath);

            string result = resolver.ResolvePath(path);

            fakeGacService.AssertWasNotCalled(gac => gac.FindBestMatchingAssemblyName(Arg <DomAssemblyName> .Is.Anything));
        }