BE.CQRS.Data.MongoDb.Tests.StreamNamerTests.WhenResolvingStream.ItCanReConstructTheTypeName C# (CSharp) Method

ItCanReConstructTheTypeName() private method

private ItCanReConstructTheTypeName ( ) : void
return void
        public void ItCanReConstructTheTypeName()
        {
            string type = sut.TypeNameByStreamName(streamName);

            Assert.Equal(typeof(SampleBo).FullName, type);
        }
    }