CHAOS.Portal.Client.Standard.Test.Extensions.UserExtensionTest.ShouldGetCurrentUser C# (CSharp) Method

ShouldGetCurrentUser() private method

private ShouldGetCurrentUser ( ) : void
return void
		public void ShouldGetCurrentUser()
		{
			TestData(
				CallPortalWithPagedResult(c => c.User().Get()),
					d =>
					{
						Assert.AreNotEqual(0, d.Count, "No user returned");
						Assert.AreNotEqual(new Guid(), d[0].Guid, "User Guid not set");
					});

			EndTest();
		}
	}
UserExtensionTest