本文整理汇总了C#中Subject.CreateCollection方法的典型用法代码示例。如果您正苦于以下问题:C# Subject.CreateCollection方法的具体用法?C# Subject.CreateCollection怎么用?C# Subject.CreateCollection使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Subject
的用法示例。
在下文中一共展示了Subject.CreateCollection方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ProcessSingleBuildThatFails
public async Task ProcessSingleBuildThatFails()
{
var cache = new TestBlobCache();
var client = new GitHubClient(new ProductHeaderValue("Peasant"));
var stdout = new Subject<string>();
var allLines = stdout.CreateCollection();
var fixture = new BuildQueue(client, cache);
var result = default(int);
bool shouldDie = true;
try {
// NB: This build fails because NuGet package restore wasn't set
// up properly, so MSBuild is missing a ton of assemblies
result = await fixture.ProcessSingleBuild(new BuildQueueItem() {
BuildId = 1,
BuildScriptUrl = TestBuild.BuildScriptUrl,
RepoUrl = TestBuild.RepoUrl,
SHA1 = TestBuild.FailingBecauseOfMsbuildSHA1,
}, stdout);
} catch (Exception ex) {
Console.WriteLine(ex.ToString());
shouldDie = false;
}
var output = allLines.Aggregate(new StringBuilder(), (acc, x) => { acc.AppendLine(x); return acc; }).ToString();
Console.WriteLine(output);
Assert.False(shouldDie);
}
示例2: ProcessSingleBuildIntegrationTest
public async Task ProcessSingleBuildIntegrationTest()
{
var cache = new TestBlobCache();
var client = new GitHubClient(new ProductHeaderValue("Peasant"));
var stdout = new Subject<string>();
var allLines = stdout.CreateCollection();
var fixture = new BuildQueue(client, cache);
var result = await fixture.ProcessSingleBuild(new BuildQueueItem() {
BuildId = 1,
BuildScriptUrl = TestBuild.BuildScriptUrl,
RepoUrl = TestBuild.RepoUrl,
SHA1 = TestBuild.PassingBuildSHA1,
}, stdout);
var output = allLines.Aggregate(new StringBuilder(), (acc, x) => { acc.AppendLine(x); return acc; }).ToString();
Console.WriteLine(output);
Assert.Equal(0, result);
Assert.False(String.IsNullOrWhiteSpace(output));
}