public void NotifyBalloon_正常()
        {
            // arrange
            var info = new LiveNotification("hoge", "全宇宙アップルパイ会議", "");

            // act

            // assert
        }
示例#2
0
        private void HandleLiveCloseInfomation(dynamic json)
        {
            if (json.mode != "close_entry")
            {
                return;
            }

            if (this.OnNotifyLiveClose != null)
            {
                var liveInfo = new LiveNotification(json);
                this.OnNotifyLiveClose(liveInfo);
            }
        }
示例#3
0
		private void HandleCloseEntry(dynamic json) {
			if (this.OnNotifyLiveClose != null) {
				var liveInfo = new LiveNotification(json);
				this.OnNotifyLiveClose(liveInfo);
			}
		}
示例#4
0
		private void HandleStartEntry(dynamic json) {
			if (this.OnNotifyLiveStart != null) {
				var liveInfo = new LiveNotification(json);
				this.OnNotifyLiveStart(liveInfo);
			}
		}