本文整理汇总了C#中Core.executeGet方法的典型用法代码示例。如果您正苦于以下问题:C# Core.executeGet方法的具体用法?C# Core.executeGet怎么用?C# Core.executeGet使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Core
的用法示例。
在下文中一共展示了Core.executeGet方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Should_Display_Good_Text
public void Should_Display_Good_Text()
{
string[] args = new string[]{"get","-url","http://webbdoger93.free.fr/testNurl/hello.html"};
Parser p = new Parser(args);
p.parseArgs();
Core c = new Core(p.Line);
Assert.AreEqual("<h1>Hello test<h1>",c.executeGet());
}
示例2: Should_Display_Error_On_Fake_Url
public void Should_Display_Error_On_Fake_Url()
{
string[] args = new string[]{"get","-url","http://horloge.parlante.onlineERREUR.fr/"};
Parser p = new Parser(args);
p.parseArgs();
Core c = new Core(p.Line);
Assert.AreEqual("<h1>You're entered a fake url</h1>",c.executeGet());
}