本文介绍了如何使用nunit控制台指定平台(android或ios)测试的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个xamarin ui测试多平台项目,我想知道是否通过控制台启动测试,所以只能启动ios或android测试.因为如果它启动两个...我当前的命令行是:
I have a xamarin ui test multiplateform project, I would like to know if I launch my test via the console it is possible to launch only ios or android tests. For if it launches the two ...my current command line is :
mono /Users/Shared/opt/NUnit/nunit3-console.exe /Users/Shared/Jenkins/Home/workspace/build_project/UITest/bin/Debug/UITest.dll
感谢您的帮助
推荐答案
我找到了解决方案,我需要添加--test="UITest.Tests(my_platform)"
来选择iOS或Android!
I find the solution, I need to add --test="UITest.Tests(my_platform)"
to select either iOS or Android!
这篇关于如何使用nunit控制台指定平台(android或ios)测试的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!