From 8c18f8111d03425255bcd1d60b70da5c9ae5f521 Mon Sep 17 00:00:00 2001 From: mdejong Date: Fri, 14 Jun 2002 07:17:53 +0000 Subject: * tests/winfo.test: Add basic tests for winfo ismapped. --- ChangeLog | 4 ++++ tests/winfo.test | 24 +++++++++++++++++++++++- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 5b90c55..2ddbb75 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2002-06-13 Mo DeJong + * tests/winfo.test: Add basic tests for winfo ismapped. + +2002-06-13 Mo DeJong + * tests/unixWm.test: * tests/wm.test: Move wm minsize and wm maxsize usage tests into the cross platform wm tests. diff --git a/tests/winfo.test b/tests/winfo.test index 443ab66..a1344c9 100644 --- a/tests/winfo.test +++ b/tests/winfo.test @@ -6,7 +6,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: winfo.test,v 1.5 2000/03/02 23:52:57 hobbs Exp $ +# RCS: @(#) $Id: winfo.test,v 1.6 2002/06/14 07:17:53 mdejong Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { source [file join [pwd] [file dirname [info script]] defs.tcl] @@ -360,6 +360,28 @@ test winfo-13.4 {[winfo containing] with embedded windows} { set z } 0 +test winfo-14.1 {usage} { + list [catch {winfo ismapped} msg] $msg +} {1 {wrong # args: should be "winfo ismapped window"}} + +test winfo-14.2 {usage} { + list [catch {winfo ismapped . .} msg] $msg +} {1 {wrong # args: should be "winfo ismapped window"}} + +test winfo-14.3 {initially unmapped} { + catch {destroy .t} + toplevel .t + winfo ismapped .t +} 0 + +test winfo-14.4 {mapped at idle time} { + catch {destroy .t} + toplevel .t + update idletasks + winfo ismapped .t +} 1 + + foreach i [winfo children .] { catch {destroy $i} } -- cgit v0.12