コード例 #1
0
		//===========================================================================================
		private static void TestProfileValues(IptcProfile profile, int count)
		{
			Assert.IsNotNull(profile);

			Assert.AreEqual(count, profile.Values.Count());

			foreach (IptcValue value in profile.Values)
			{
				Assert.IsNotNull(value.Value);
			}
		}
コード例 #2
0
		//===========================================================================================
		private static void TestProfileValues(IptcProfile profile)
		{
			TestProfileValues(profile, 19);
		}