我已切换到Gitlab并正在使用他们的CI功能。有可能检查程序输出是否正确?
例如,如果我将.py放在CI中,我可以检查输出是否为" Hello World"?
print("Hello World")
如果CI检测到程序没有打印" Hello World",是否可以使测试失败?
谢谢:)
答案 0 :(得分:0)
尝试一下:
using MyNamespace.Mobile.UI.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace MyNamespace.Mobile.UI
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class TestAndDemoSelection : ContentPage
{
public TestAndDemoSelection()
{
InitializeComponent();
}
}
}