public async Task Entity()
 {
     TestCode
     (
         EntityWriter.GetFileName(await GetSchema(), false),
         PartialTypeGenerator.GetEntity(await GetSchema(), AppNamespace)
     );
 }
 public async Task InputModel()
 {
     TestCode
     (
         InputModelWriter.GetFileName(await GetSchema(), false),
         PartialTypeGenerator.GetInput(await GetSchema(), AppNamespace)
     );
 }
 public async Task JoinEntity()
 {
     foreach (var relationship in (await GetSchema()).GetRelationshipSettings())
     {
         TestCode
         (
             JoinEntityWriter.GetFileName(relationship, false),
             PartialTypeGenerator.GetJoinEntity(await GetSchema(), relationship, AppNamespace)
         );
     }
 }