>># 
>># Copyright 1990, 1991 by the Massachusetts Institute of Technology and
>># UniSoft Group Limited.
>># 
>># Permission to use, copy, modify, distribute, and sell this software and
>># its documentation for any purpose is hereby granted without fee,
>># provided that the above copyright notice appear in all copies and that
>># both that copyright notice and this permission notice appear in
>># supporting documentation, and that the names of MIT and UniSoft not be
>># used in advertising or publicity pertaining to distribution of the
>># software without specific, written prior permission.  MIT and UniSoft
>># make no representations about the suitability of this software for any
>># purpose.  It is provided "as is" without express or implied warranty.
>># 
>># $XConsortium: ldqryfnt.m,v 1.9 92/06/11 17:07:36 rws Exp $
>># 
>>#      SCCS:  @(#)  EAll.mc Rel 1.5	    (3/12/92)
>>#
>>TITLE XLoadQueryFont CH06
>>ASSERTION A XLoadQueryFont-1
When the name argument names an existing font, then a call
to XLoadQueryFont loads the font named name, and returns a
pointer to an XFontStruct structure which contains
information on the font.
>>STRATEGY
For each xtest font:
  Load and query font.
  Compare returned XFontStruct with known good structures.
>>ASSERTION A XLoadQueryFont-2
The font ID returned by a call to XLoadQueryFont is usable
on any GC created for any screen of the display.
>>STRATEGY
For each visual supported for the default screen:
  Load and query font "xtfont1".
  Create window.
  Create GC for window.
  Set font component in GC to loaded font.
  Draw string with single character.
  Pixmap verify.
Note: this tests the GC's for the default screen. 
To test for other screens, re-run the test suite with XT_DISPLAY set 
to number of required screen.
>>ASSERTION A XLoadQueryFont-3
When the name argument does not name an existing font, then
XLoadQueryFont returns NULL.
>>STRATEGY
Set name to a non-existant name.
Verify that NULL is returned.
>>ASSERTION A XLoadQueryFont-4
Upper and lower case characters in the name argument refer
to the same font.
>>STRATEGY
Load font by name xtfont0.
Load font by name XtFoNt0.
Verify that this name also succeeds and that
the returned XFontStruct's are the same.
>>ASSERTION B XLoadQueryFont-5
When the server fails to allocate a required resource, then
a BadAlloc error occurs.
>>STRATEGY
Report UNTESTED
