public async Task InputModelGenerated()
 {
     TestCode
     (
         InputModelWriter.GetFileName(await GetSchema(), true),
         await InputModelWriter.Create(await GetSchema(), await GetOtherSchema(), AppNamespace)
     );
 }
 public async Task InputModel()
 {
     TestCode
     (
         InputModelWriter.GetFileName(await GetSchema(), false),
         PartialTypeGenerator.GetInput(await GetSchema(), AppNamespace)
     );
 }