>># 
>># 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: gtgmtry.m,v 1.6 92/06/11 16:12:54 rws Exp $
>># 
>>#      SCCS:  @(#)  EDra.mc Rel 1.5	    (10/25/91)
>>#
>>TITLE XGetGeometry CH04
>>ASSERTION A XGetGeometry-1
When the drawable is an InputOutput window, then a call to
XGetGeometry returns the root window in root_return, the x
and y coordinates of the upper-left outer corner relative to
the parent window origin in x_return and y_return, the
inside width and height in width_return and height_return,
the border width in border_width_return, and the depth of
the window in depth_return.
>>STRATEGY
For each visual and depth:
	Create a parent window
	Create a test window
	Call XGetGeometry to obtain the test window geometry
	Verify that the values returned were as expected
>>ASSERTION A XGetGeometry-2
When the drawable is an InputOnly window, then a call to
XGetGeometry returns the root window in root_return, the x
and y coordinates of the upper-left outer corner relative to
the parent window origin in x_return and y_return, the
inside width and height of the window in width_return and
height_return, and sets border_width_return and
depth_return to zero.
>>STRATEGY
Create a parent window
Create an InputOnly test window
Call XGetGeometry to obtain the test window geometry
Verify that the returned values were as expected
>>ASSERTION A XGetGeometry-3
When the drawable is a pixmap, then a call to XGetGeometry
returns the root window in root_return, the inside width
and height in width_return and height_return, the depth of
the pixmap in depth_return, and sets x_return, y_return,
and border_width_return to zero.
>>STRATEGY
For each depth:
	Create a parent window
	Create a test pixmap
	Call XGetGeometry to obtain the test pixmap geometry
	Verify that the values returned were as expected
>>ASSERTION A XGetGeometry-4
When a drawable argument does not name a valid Drawable,
then a BadDrawable error occurs.
>>STRATEGY
Create a bad drawable by creating and destroying a window.
Call test function using bad drawable as the drawable argument.
Verify that a BadDrawable error occurs.
