You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.2 KiB
49 lines
1.2 KiB
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) |
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt) |
|
|
|
using System; |
|
using ICSharpCode.PythonBinding; |
|
using ICSharpCode.Scripting.Tests.Utils; |
|
using ICSharpCode.SharpDevelop.Dom; |
|
using NUnit.Framework; |
|
|
|
namespace PythonBinding.Tests.Resolver |
|
{ |
|
[TestFixture] |
|
public class PythonSelfResolverTests |
|
{ |
|
PythonSelfResolver resolver; |
|
ExpressionResult expression; |
|
ParseInformation parseInfo; |
|
PythonResolverContext context; |
|
|
|
[Test] |
|
public void Resolve_NoCallingClass_ReturnsNull() |
|
{ |
|
CreatePythonSelfResolver(); |
|
CreateParseInfo(); |
|
CreatePythonResolverContext(); |
|
|
|
ResolveResult result = resolver.Resolve(context, expression); |
|
Assert.IsNull(result); |
|
} |
|
|
|
void CreatePythonSelfResolver() |
|
{ |
|
resolver = new PythonSelfResolver(); |
|
expression = new ExpressionResult("self"); |
|
} |
|
|
|
void CreateParseInfo() |
|
{ |
|
MockProjectContent projectContent = new MockProjectContent(); |
|
DefaultCompilationUnit unit = new DefaultCompilationUnit(projectContent); |
|
parseInfo = new ParseInformation(unit); |
|
} |
|
|
|
void CreatePythonResolverContext() |
|
{ |
|
context = new PythonResolverContext(parseInfo); |
|
} |
|
} |
|
}
|
|
|