public void EmptyContextHandlesSummary()
        {
            var context = SkillSetStage.Empty();

            Assert.Equal(string.Empty, context.ID);
            Assert.Equal(string.Empty, context.Name);
            Assert.False(context.Stage.HasValue);
        }
 public SkillSetLocale(ManagementApi api, SkillSetStage stage, string locale)
 {
     Stage  = stage;
     Locale = locale;
     Api    = new SkillSetLocaleApi(this, api);
 }