本文整理汇总了C#中AutoTest.Core.Caching.Projects.ProjectDocument.HasBeenReadFromFile方法的典型用法代码示例。如果您正苦于以下问题:C# ProjectDocument.HasBeenReadFromFile方法的具体用法?C# ProjectDocument.HasBeenReadFromFile怎么用?C# ProjectDocument.HasBeenReadFromFile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AutoTest.Core.Caching.Projects.ProjectDocument
的用法示例。
在下文中一共展示了ProjectDocument.HasBeenReadFromFile方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: When_already_prepared_return_null
public void When_already_prepared_return_null()
{
var document = new ProjectDocument(ProjectType.CSharp);
document.HasBeenReadFromFile();
var record = new Project("someproject", document);
var project = _preparer.Prepare(record);
project.ShouldBeTheSameAs(record);
}
示例2: SetUp
public void SetUp()
{
_firstDocument = new ProjectDocument(ProjectType.CSharp);
_firstDocument.HasBeenReadFromFile();
_secondDocument = new ProjectDocument(ProjectType.CSharp);
_secondDocument.HasBeenReadFromFile();
var parser = new FakeProjectParser(new ProjectDocument[] { _secondDocument, _firstDocument });
_cache = new Cache(new FakeServiceLocator(parser, delegate { return _cache; }));
}
示例3: SetUp
public void SetUp()
{
_firstDocument = new ProjectDocument(ProjectType.CSharp);
_firstDocument.HasBeenReadFromFile();
_secondDocument = new ProjectDocument(ProjectType.CSharp);
_secondDocument.HasBeenReadFromFile();
var parser = new FakeProjectParser(new ProjectDocument[] { _secondDocument, _firstDocument });
_cache = new Cache(new FakeServiceLocator(parser, delegate { return _cache; }));
_testProject = Path.GetFullPath(string.Format("TestResources{0}VS2008{0}CSharpNUnitTestProject.csproj", Path.DirectorySeparatorChar));
_testProjectVB = Path.GetFullPath(string.Format("TestResources{0}VS2008{0}NUnitTestProjectVisualBasic.vbproj", Path.DirectorySeparatorChar));
}
示例4: setReferencedBy
private void setReferencedBy(ProjectDocument newDocument, ProjectDocument existingDocument)
{
if (existingDocument != null)
newDocument.AddReferencedBy(existingDocument.ReferencedBy);
newDocument.HasBeenReadFromFile();
}