File: 22_interface.t

package info (click to toggle)
libwx-perl 1%3A0.9932-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,300 kB
  • sloc: cpp: 11,064; perl: 8,603; ansic: 711; makefile: 53
file content (42 lines) | stat: -rwxr-xr-x 742 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/perl -w

# some basic tests that
# interface parsing worked OK

use strict;
use Wx;
use lib './t';
use Tests_Helper 'test_frame';

package MyFrame;

use base 'Wx::Frame';
use Test::More 'tests' => 1;

sub new {
my $this = shift->SUPER::new( undef, -1, 'Test Frame' );

# we don't use Frame for Wx::Button::GetDefaultSize test
# but perhaps we will add more tests in future

# button GetDefaultSize ----------------------
my $buttonsize = undef;
eval {
    my $wxbsize = Wx::Button::GetDefaultSize;
    $buttonsize = $wxbsize->x;
};

ok(defined($buttonsize), 'Interface Wx::Button::GetDefaultSize');


return $this;
};

package main;

test_frame( 'MyFrame', 1 );
Wx::wxTheApp()->MainLoop();

# local variables:
# mode: cperl
# end: