public void NotifyBalloon_正常() { // arrange var info = new LiveNotification("hoge", "全宇宙アップルパイ会議", ""); // act // assert }
private void HandleLiveCloseInfomation(dynamic json) { if (json.mode != "close_entry") { return; } if (this.OnNotifyLiveClose != null) { var liveInfo = new LiveNotification(json); this.OnNotifyLiveClose(liveInfo); } }
private void HandleCloseEntry(dynamic json) { if (this.OnNotifyLiveClose != null) { var liveInfo = new LiveNotification(json); this.OnNotifyLiveClose(liveInfo); } }
private void HandleStartEntry(dynamic json) { if (this.OnNotifyLiveStart != null) { var liveInfo = new LiveNotification(json); this.OnNotifyLiveStart(liveInfo); } }