HI! I'm new with xamarin, so sorry for my question.
Someone can explain me how I can test app with xamarin? Can I just upload apk somewhere or I have to write some code? And if I have to write some code, how it works??
1) Use Xamarin Test Recorder to create your tests with an point & click approach.
2) Write code. There is support for many frameworks like Calabash, UITest or Appium in Xamarin Test Cloud. If you want to write your tests in C# use nunit and UITest.
Both cases requires you to upload your apk to a device/ emulator if you want to test it locally first.
Answers
You have two options:
1) Use Xamarin Test Recorder to create your tests with an point & click approach.
2) Write code. There is support for many frameworks like Calabash, UITest or Appium in Xamarin Test Cloud. If you want to write your tests in C# use nunit and UITest.
Both cases requires you to upload your apk to a device/ emulator if you want to test it locally first.