public override void TestFixtureSetUp()
 {
     base.TestFixtureSetUp();
     _service = new SmashAttributeTypeService(Context);
     _controller = new SmashAttributeTypesController(_service);
 }
 /// <summary>
 /// Create a new <see cref="SmashAttributeTypesController"/> to interact with the server.
 /// </summary>
 public SmashAttributeTypesController(ISmashAttributeTypeService smashAttributeTypesService)
 {
     _smashAttributeTypesService = smashAttributeTypesService;
 }