public void CallStartedEvent()
        {
            bool called = false;

            action.OnStarted += x => called = true;

            action.RaiseOnStarted();

            Assert.IsTrue(called);
        }
Beispiel #2
0
 public void OnPointerDown(PointerEventData eventData)
 {
     voiceChatAction.RaiseOnStarted();
 }