public void convertNullAPIToAPI() {
			apiCallback1 = null;
			converter = new EventNotificationConfigConverter(apiCallback1);
			Assert.IsNull(converter.ToAPICallback());
		}
		public void convertNullSDKToSDK() {
			sdkEventNotificationConfig1 = null;
			converter = new EventNotificationConfigConverter(sdkEventNotificationConfig1);
			Assert.IsNull(converter.ToSDKEventNotificationConfig());
		}