Aspectacular.Test.AspectacularTest.TestStaticLogging C# (CSharp) Method

TestStaticLogging() private method

private TestStaticLogging ( ) : void
return void
        public void TestStaticLogging()
        {
            Assert.IsNull(Proxy.CurrentLog);

            const int intParm = 456;
            this.IntProp = intParm;
            string refString = DateTime.Now.Ticks.ToString(CultureInfo.InvariantCulture);
            bool outBool = false;
            SomeTestClass obj = new SomeTestClass();

            // Example of calling static void method.
            AOP.Invoke(TestAspects, () => SomeTestClass.MiscParmsStatic(this.IntProp, obj, ref refString, out outBool));
            Assert.IsTrue(outBool);
        }