Is there any way for the app to simulate the result of UpdateManager? Currently when I do the Update and restart method. My application just seems to not even open in the first place.
That sort of depends on what you are wanting to simulate. You can always hide UpdateManager behind an interface if you are just looking to mock it. However, the testability of the flow is something that is an active area of development on the SDK. A simple work around for local testing is changing your update source to just be a local directory where you put the installer packages. This is how I often test my stuff when I am working locally.
Is there any way for the app to simulate the result of UpdateManager?
Currently when I do the Update and restart method. My application just seems to not even open in the first place.
That sort of depends on what you are wanting to simulate. You can always hide UpdateManager behind an interface if you are just looking to mock it. However, the testability of the flow is something that is an active area of development on the SDK.
A simple work around for local testing is changing your update source to just be a local directory where you put the installer packages. This is how I often test my stuff when I am working locally.