public void TestSerializeMultipleFiles_EnglishSpanish()
        {
            // Sample dictionary
            string[] fileEnglishSpanish = new string[6]
            {
                DictionaryI18n.FFG_LANGS,
                "MONSTER_BYAKHEE_ATTACK_01,\"The byakhee dives at you, its leathery wings like scythes (; 2). If you pass, you narrowly duck the creature's strike. If you fail, you are whipped to the ground by a swooping blow; suffer 1 Damage and become Dazed.\",\"El byakhee se lanza en picado hacia ti con sus alas correosas similares a guadañas (; 2). Si superas la tirada, te agachas y esquivas por los pelos el ataque de la criatura. Si fallas la tirada, te derriba violentamente con un ataque de pasada; sufres 1 de Daño y adquieres el estado Desconcertado.\"",
                "ATTACK_FIREARM_VS_SPIRIT_03,\"You fire at the specter. It does not work. Instead, you focus your mind and scream at it, \"\"Get out!\"\" (+1). The monster suffers damage equal to your test result.\",Disparas al espectro. No sirve de nada. Decides cambiar de estrategia; te concentras y exhortas a la aparición a que se marche (+1). El monstruo sufre tanto Daño como el resultado de tu tirada.",
                "MONSTER_THRALL_MOVE_01,The {0} moves 2 spaces toward the nearest investigator. Then it attacks the investigator in its space with the highest .,",
                "PARAMETER,parameter,parametro,,,,,",
                "CUTSCENE_1_PROLOGUE,\"Your adventure begins with a note shoved under your door. Scrawled in large, unpracticed letters: \\n\\n[i]Hey stupid heroes! \\n\\nEverything is terrible! The Lair of All Goblins has been overrun by wicked things that dumb heroes like you always fight. You must come here, beat them up, and break their things to stop the unthinkable: the end of all goblins! You obviously don’t know where the Lair of All Goblins is, so I drew a map. Don’t lose it!\\n\\nYour fearsome master, \\n\\nSplig\\n\\n[/i]The map is rough but legible, leading to a place you clearly recognize as the Parigreth ruins. Having nothing better to do, you gather your gear and depart.\""
            };

            DictionaryI18n newSut = new DictionaryI18n(fileEnglishSpanish, DictionaryI18n.DEFAULT_LANG, DictionaryI18n.DEFAULT_LANG);

            Dictionary <string, List <string> > dictMultipleSerialization = newSut.SerializeMultiple();

            Assert.IsTrue(dictMultipleSerialization.Keys.Count == 2);
        }
        public void TestSerializeMultipleFiles()
        {
            Dictionary <string, List <string> > dictMultipleSerialization = sut.SerializeMultiple();

            Assert.IsTrue(dictMultipleSerialization.Keys.Count == 9);
        }