view UnitTests/All/GetValueTest.cs @ 9:1e85f66cf767 default tip

update bltoolkit
author nickolay
date Thu, 05 Apr 2018 20:53:26 +0300
parents f990fcb411a9
children
line wrap: on
line source

using System;

using BLToolkit.Aspects;

using NUnit.Framework;

namespace UnitTests.All
{
	//[TestFixture]
	public class GetValueTest
	{
		[ExpectedException(typeof(ApplicationException))]
		public void Test()
		{
			try
			{
				var info = new InterceptCallInfo();

				info.ParameterValues = new object[2];
				info.ParameterValues[0] = "123";
				info.ParameterValues[1] = 123;

				throw new ApplicationException();
			}
			catch (Exception ex)
			{
				Console.WriteLine(ex);
				Console.WriteLine(ex);
				throw;
			}
		}

		public void Test(out int i3, out decimal d4)
		{
			object o = (decimal)123;

			d4 = (decimal)o;

			o = (int)123;

			i3 = (int)o;
		}
	}
}