Esempio n. 1
0
 public void CheckAddBasicViewLayouterPasses()
 {
     var viewLayouter = new ViewLayouter()
                        .AddBasicViewLayouter();
     var keywords = new Dictionary <string, (IViewLayoutAccessor accessor, bool containAutoViewObj)>()
     {
         { BasicViewLayoutName.depth.ToString(), (new DepthViewLayoutAccessor(), false) },
         { BasicViewLayoutName.siblingOrder.ToString(), (new SiblingOrderViewLayoutAccessor(), true) }
     };
 public void CheckViewLayouterPasses()
 {
     var viewLayouter = new ViewLayouter()
                        .AddTransformKeywordsAndAutoCreator();
     var testData = new (string key, IViewLayoutAccessor accessor, ViewLayoutAccessorUpdateTiming updateTiming)[] {