本文整理汇总了C#中Story.RandomizeObject方法的典型用法代码示例。如果您正苦于以下问题:C# Story.RandomizeObject方法的具体用法?C# Story.RandomizeObject怎么用?C# Story.RandomizeObject使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Story
的用法示例。
在下文中一共展示了Story.RandomizeObject方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TestOverwriteWorks
public void TestOverwriteWorks()
{
var story = new Story();
story.RandomizeObject();
var story2 = new Story();
story.RandomizeObject();
story.Overwrite(story2);
Assert.IsTrue(story.Artifact.Name == story2.Artifact.Name);
Assert.IsTrue(story.EndingLocation.Name == story2.EndingLocation.Name);
Assert.IsTrue(story.EndingScenario.Name == story2.EndingScenario.Name);
Assert.IsTrue(story.MajorTwist.Name == story2.MajorTwist.Name);
Assert.IsTrue(story.StartingLocation.Name == story2.StartingLocation.Name);
Assert.IsTrue(story.StartingScenario.Name == story2.StartingScenario.Name);
}
示例2: TestCopyWorks
public void TestCopyWorks()
{
var story = new Story();
story.RandomizeObject();
var story2 = story.Copy();
Assert.IsTrue(story.Artifact != story2.Artifact);
Assert.IsTrue(story.EndingLocation != story2.EndingLocation);
Assert.IsTrue(story.EndingScenario != story2.EndingScenario);
Assert.IsTrue(story.MajorTwist != story2.MajorTwist);
Assert.IsTrue(story.StartingLocation != story2.StartingLocation);
Assert.IsTrue(story.StartingScenario != story2.StartingScenario);
}