Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ public class M3ToXAmpleTransformerTests
string m_sM3FXTIrregularlyInflectedFormsDump;
string m_sM3FXTQuechuaMYLDump;
string m_sM3FXTEmiFLExDump;
string m_sM3FXTStemFreeFluctuationFLExDump;
string m_sM3FXTCompundRulesWithExceptionFeaturesFLExDump;
private string m_sAbazaOrderClassPlayDump;
readonly Dictionary<string, XPathDocument> m_mapXmlDocs = new Dictionary<string, XPathDocument>();
Expand Down Expand Up @@ -88,6 +89,7 @@ private void SetUpM3FXTDump()
m_sAbazaOrderClassPlayDump = Path.Combine(m_sTestPath, "Abaza-OrderclassPlay.xml");
m_sM3FXTQuechuaMYLDump = Path.Combine(m_sTestPath, "QuechuaMYLFxtResult.xml");
m_sM3FXTEmiFLExDump = Path.Combine(m_sTestPath, "emi-flexFxtResult.xml");
m_sM3FXTStemFreeFluctuationFLExDump = Path.Combine(m_sTestPath, "StemFreeFluctuationFLExDump.xml");
m_sM3FXTCompundRulesWithExceptionFeaturesFLExDump = Path.Combine(m_sTestPath, "CompundRulesWithExceptionFeatures.xml");

SetupXmlDocument(m_sM3FXTDump);
Expand All @@ -107,6 +109,7 @@ private void SetUpM3FXTDump()
SetupXmlDocument(m_sAbazaOrderClassPlayDump);
SetupXmlDocument(m_sM3FXTQuechuaMYLDump);
SetupXmlDocument(m_sM3FXTEmiFLExDump);
SetupXmlDocument(m_sM3FXTStemFreeFluctuationFLExDump);
SetupXmlDocument(m_sM3FXTCompundRulesWithExceptionFeaturesFLExDump);
}

Expand Down Expand Up @@ -168,6 +171,7 @@ public void CreateXAmpleLexiconFile()
ApplyTransform(m_sAbazaOrderClassPlayDump, m_lexTransform, "Abaza-OrderclassPlaylex.txt");
ApplyTransform(m_sM3FXTQuechuaMYLDump, m_lexTransform, "QuechuaMYLlex.txt");
ApplyTransform(m_sM3FXTEmiFLExDump, m_lexTransform, "emi-flexlex.txt");
ApplyTransform(m_sM3FXTStemFreeFluctuationFLExDump, m_lexTransform, "stemFreeFluctuationlex.txt");
}
/// <summary>
/// Test creating the word grammar file
Expand Down
Loading
Loading