Tests.TraceTest.TraceConstructorTest C# (CSharp) Method

TraceConstructorTest() private method

private TraceConstructorTest ( ) : void
return void
        public void TraceConstructorTest()
        {
            Guid id = Guid.NewGuid();
            string contextId = "ContextID";
            Trace target = new Trace(id, contextId);
            Assert.AreEqual(id, target.Id);
            Assert.AreEqual(contextId, target.ContextId);            
        }