Changeset 5992
- Timestamp:
- Feb 9, 2016, 9:51:13 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/geomap/gui/test/geomapviewpoint.test
r5979 r5992 102 102 set err [catch {$v1 configure -x "foo"} msg] 103 103 list $err $msg 104 } {1 {bad value "foo": should be a double}}104 } {1 {bad value "foo": x should be a double}} 105 105 106 106 test geomapviewpoint-2.4 {-x exponents} { … … 130 130 set err [catch {$v1 configure -y "foo"} msg] 131 131 list $err $msg 132 } {1 {bad value "foo": should be a double}}132 } {1 {bad value "foo": y should be a double}} 133 133 134 134 test geomapviewpoint-3.3 {-y exponents} { … … 157 157 set err [catch {$v1 configure -z "foo"} msg] 158 158 list $err $msg 159 } {1 {bad value "foo": should be a double}}159 } {1 {bad value "foo": z should be a double}} 160 160 161 161 test geomapviewpoint-4.3 {-z exponents} { … … 184 184 set err [catch {$v1 configure -heading "foo"} msg] 185 185 list $err $msg 186 } {1 {bad value "foo": should be a double}}186 } {1 {bad value "foo": heading should be a double}} 187 187 188 188 test geomapviewpoint-5.3 {-heading exponents} { … … 211 211 set err [catch {$v1 configure -pitch "foo"} msg] 212 212 list $err $msg 213 } {1 {bad value "foo": should be a double}}213 } {1 {bad value "foo": pitch should be a double}} 214 214 215 215 test geomapviewpoint-6.3 {-pitch exponents} { … … 238 238 set err [catch {$v1 configure -distance "foo"} msg] 239 239 list $err $msg 240 } {1 {bad value "foo": should be a double}}240 } {1 {bad value "foo": distance should be a double}} 241 241 242 242 test geomapviewpoint-7.3 {-distance exponents} { … … 259 259 set err [catch {$v1 configure -vertDatum ""} msg] 260 260 list $err $msg 261 } {1 {bad value "": should be a non-empty string}}261 } {1 {bad value "": vertDatum should be a non-empty string}} 262 262 263 263 #---------------------------------------------------------- … … 274 274 set err [catch {$v1 configure -label ""} msg] 275 275 list $err $msg 276 } {1 {bad value "": should be a non-empty string}}276 } {1 {bad value "": label should be a non-empty string}} 277 277 278 278 #---------------------------------------------------------- … … 289 289 set err [catch {$v1 configure -description ""} msg] 290 290 list $err $msg 291 } {1 {bad value "": should be a non-empty string}}291 } {1 {bad value "": description should be a non-empty string}} 292 292 293 293 #----------------------------------------------------------
Note: See TracChangeset
for help on using the changeset viewer.