1using NUnit.Framework; 2using UnityEngine; 3using UnityEngine.TestTools.Utils; 4 5public class SceneWithNestedLayoutElementsLoadScript : MonoBehaviour 6{ 7 public bool isStartCalled { get; private set; } 8 9 protected void Start() 10 { 11 isStartCalled = true; 12 } 13}