>># 
>># 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: lstprprts.m,v 1.7 92/06/11 16:13:32 rws Exp $
>># 
>>#      SCCS:  @(#)  EWin.mc Rel 1.4	    (7/19/91)
>>#
>>TITLE XListProperties CH04
>>ASSERTION A XListProperties-1
When the specified window w has properties defined, then a
call to XListProperties returns a pointer to an array of
atom properties that are defined for the specified window w
and can be freed with XFree, and returns the number of
properties in the array in num_prop_return.
>>STRATEGY
Create a window with properties.
Call XListProperties to obtain the property list for the window.
Verify that the number of properties returned was as expected.
Verify that the correct properties were returned.
Verify the list may be XFree'd.
>>ASSERTION A XListProperties-2
When the specified window w has no properties defined, then
a call to XListProperties returns NULL, and zero in
num_prop_return.
>>STRATEGY
Create a window with no properties.
Call XListProperties to obtain the property list for the window.
Verify that a NULL pointer was returned.
Verify that num_prop_return was zero.
>>ASSERTION A XListProperties-3
When a window argument does not name a valid Window, then a
BadWindow error occurs.
>>STRATEGY
Create a bad window by creating and destroying a window.
Call test function using bad window as the window argument.
Verify that a BadWindow error occurs.
