.NET Unit test runner for iOS

前端 未结 2 1894
太阳男子
太阳男子 2020-11-28 13:39

Has anyone written (or know about) a .net unit-test runner, preference to NUnit, that runs on iOS ? or do I have to roll my own ?

My goal is to exec

2条回答
  •  孤城傲影
    2020-11-28 13:52

    I've wanted the same thing myself for quite some time. I think building one is the only option...

    Can't imagine porting this GUI to iOS:

    I think the only reasonable solution might be to show a simple UITableView on the device/simulator with test name and red/green checkmarks, and post the full NUnit results via http to server software somewhere.

    Sounds like you'd have to write a MonoDevelop add-in that serves up an API for remote NUnit runners to send data to. Not really a trivial task.

提交回复
热议问题