This looks like a pretty decent tutorial for it's target audience. However, as someone who works with Unity on AR and VR the biggest bit of advice I can give is learn how Unity WANTS you to work with it! Currently we are re-writing an AR/VR test suite because the original version was written by programmers with little or no Unity experience. This means they re-wrote scene loading, cameras, and other parts that were a…
Currently we are re-writing an AR/VR test
suite ...
The Unity Test Tools[0] asset may be something which could assist in the test suite(s) your team is re-writing. One tip in using it is that the TestComponent's in an integration test scene are run in lexicographical order. So I enforce sequencing when needed by prefixing with "1 - ", "2 - ", etc.HTH