private void CheckGenerateCode(Int32 wordCountValue, String message) { AsmDsInstruction target = MakeTarget(wordCountValue); const Label DefinedLabel = null; RelocatableModule relModule = new RelocatableModule(); target.GenerateCode(DefinedLabel, relModule); // 確保する語数分の 0 の語が追加される。 Word[] expectedWords = WordTest.MakeCountArray(Word.Zero, wordCountValue); RelocatableModuleTest.CheckWords(relModule, expectedWords, message); }