public void Init()
        {
            var type = GetType();

            var tag = new TestAssemblyGenerator(type);

            _asm = tag.CreateTestAssembly();

            var asmproc = new AssemblyProcessor(Configuration.GetProcessorsTree());

            asmproc.Process(_asm);
        }
        public void Init()
        {
            var type = GetType();

            var tag = new TestAssemblyGenerator(type);

            _asm = tag.CreateTestAssembly();

            var asmproc = CreateProcessor();

            asmproc.ProcessAssembly(_asm);
        }