Ejemplo n.º 1
0
 public void Setup()
 {
     PrimaryOptions   = new HypermediaProcessingOptions(new Uri("http://temp.uri/"), LinksPolicy.AllHttp);
     SecondaryOptions = new HypermediaProcessingOptions(
         new Mock <IResponse>(MockBehavior.Strict).Object,
         new Uri("http://temp.uri/aux"),
         null,
         LinksPolicy.SameRoot);
     TheTest();
 }
Ejemplo n.º 2
0
 public void TheTest()
 {
     Result = PrimaryOptions.MergeWith(SecondaryOptions);
 }