I dont know why this is happening mono tells me the build is successful, but the console says The type or namespace name SceneManagment' does not exist in the namespace
UnityEngine’. Are you missing an assembly reference?
I downloaded unity test tools and this happens, also I am using unity 5.1. Please tell what is happening.
Add
using UnityEngine.SceneManagement;
at the top of your script.
Hint: Both Mono and Visual Studio (which I would warmly recommend over Mono) will give you some advice what to do, or outright fix the error for you if you hit the problematic part and find “Resolve”. In your case, both will offer to automatically add the needed namespace under Resolve menu.