Boo.BooLangStudioSpecs.Intellisense.WhenShowingIntellisenseForMemberSuggestion.ReturnTypesOfMethodCallsOnAnObjectCanBeUsed C# (CSharp) Method

ReturnTypesOfMethodCallsOnAnObjectCanBeUsed() private method

private ReturnTypesOfMethodCallsOnAnObjectCanBeUsed ( ) : void
return void
        public void ReturnTypesOfMethodCallsOnAnObjectCanBeUsed()
        {
            // object.method.
            // currently trys to find a reference point of the whole thing
            // (something literally declared as object.method) but it should
            // really split on "." then find each individually. Find object,
            // then find method on object.
            CompiledFixtures
                .GetDeclarations()
                .AssertPresenceOf("IndexOf", "Substring");
        }