You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LoggerMock.Verify(l =>l.Log(LogLevel.DEBUG,"User \"test_user\" is not in the forced variation map."),Times.Once);
405
407
LoggerMock.Verify(l =>l.Log(LogLevel.DEBUG,"Assigned bucket [3037] to user [test_user] with bucketing ID [test_user]."),Times.Once);
406
408
LoggerMock.Verify(l =>l.Log(LogLevel.INFO,"User [test_user] is in variation [control] of experiment [test_experiment]."),Times.Once);
409
+
LoggerMock.Verify(l =>l.Log(LogLevel.INFO,"This decision will not be saved since the UserProfileService is null."));
407
410
LoggerMock.Verify(l =>l.Log(LogLevel.INFO,"Activating user test_user in experiment test_experiment."),Times.Once);
408
411
LoggerMock.Verify(l =>l.Log(LogLevel.DEBUG,@"Dispatching impression event to URL logx.optimizely.com/decision with params {""param1"":""val1""}."),Times.Once);
409
412
@@ -423,17 +426,14 @@ public void TestActivateWithNullAttributes()
//"User "test_user" is not in the forced variation map."
431
434
LoggerMock.Verify(l =>l.Log(LogLevel.DEBUG,"User \"test_user\" is not in the forced variation map."),Times.Once);
432
435
LoggerMock.Verify(l =>l.Log(LogLevel.DEBUG,"Assigned bucket [3037] to user [test_user] with bucketing ID [test_user]."),Times.Once);
433
436
LoggerMock.Verify(l =>l.Log(LogLevel.INFO,"User [test_user] is in variation [control] of experiment [test_experiment]."),Times.Once);
434
-
LoggerMock.Verify(l =>l.Log(LogLevel.ERROR,"[UserAttributes] Null value for key null_value removed and will not be sent to results."),Times.Once);
435
-
LoggerMock.Verify(l =>l.Log(LogLevel.ERROR,"[UserAttributes] Null value for key wont_be_sent removed and will not be sent to results."),Times.Once);
436
-
LoggerMock.Verify(l =>l.Log(LogLevel.ERROR,"[UserAttributes] Null value for key bad_food removed and will not be sent to results."),Times.Once);
437
437
LoggerMock.Verify(l =>l.Log(LogLevel.INFO,"Activating user test_user in experiment test_experiment."),Times.Once);
438
438
LoggerMock.Verify(l =>l.Log(LogLevel.DEBUG,@"Dispatching impression event to URL logx.optimizely.com/decision with params {""param1"":""val1""}."),Times.Once);
439
439
@@ -683,7 +683,7 @@ public void TestTrackWithNullAttributesWithNullEventValue()
0 commit comments