Example #1
0
        protected override void beforeEach()
        {
            theProjection = new TargetProjection();
            theTarget     = new Target();

            MockFor <IServiceLocator>().Stub(x => x.GetInstance <TargetProjection>())
            .Return(theProjection);

            theNode = new DictionaryMediaNode();
        }
Example #2
0
        public void SetUp()
        {
            theProjection = new TargetProjection();
            theTarget     = new Target();

            MockFor <IServiceLocator>().Stub(x => x.GetInstance <TargetProjection>())
            .Return(theProjection);

            theNode = new DictionaryMediaNode();
        }
Example #3
0
 internal ProjectionTarget(ITarget inputTarget, Type inputType, Type outputType, TargetProjection projection)
 {
     InputTarget        = inputTarget;
     InputType          = inputType;
     OutputType         = outputType;
     OutputTarget       = projection.Target;
     ImplementationType = projection.ImplementationType;
 }