Exemplo n.º 1
0
 public static ResizeImageSet ThatInitialResizeImageSet(this ResizeImageSet resizeImageSet)
 {
     return(new ResizeImageSet()
     {
         Name = "test1", Height = 10, Width = 10
     });
 }
Exemplo n.º 2
0
 public static ResizeImageSet ThatReturnsAvalidImageSet(this ResizeImageSet resizeImageSet,
                                                        string name, int height = 10, int width = 10)
 {
     return(new ResizeImageSet()
     {
         Name = name, Height = height, Width = width
     });
 }