public void ToFolkekirkeMedlemIndikator_Other_Exception(
     [Values('p', ' ', '2')] char churchRelation)
 {
     var info = new ChurchInformationType()
     {
         ChurchRelationship = churchRelation
     };
     var ret = info.ToFolkekirkeMedlemIndikator();
 }
            public void ToFolkekirkeMedlemIndikator_AU_False(
                [Values('A', 'U', 'a', 'u')] char churchRelation)
            {
                var info = new ChurchInformationType()
                {
                    ChurchRelationship = churchRelation
                };
                var ret = info.ToFolkekirkeMedlemIndikator();

                Assert.False(ret);
            }
            public void ToFolkekirkeMedlemIndikator_FMS_True(
                [Values('F', 'M', 'S', 'f', 'm', 's')] char churchRelation)
            {
                var info = new ChurchInformationType()
                {
                    ChurchRelationship = churchRelation
                };
                var ret = info.ToFolkekirkeMedlemIndikator();

                Assert.True(ret);
            }