| 12
 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
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 
 | ###############################################################################
#
# Tests for Excel::Writer::XLSX::Worksheet methods.
#
# reverse(''), September 2010, John McNamara, jmcnamara@cpan.org
#
use lib 't/lib';
use TestFunctions '_new_worksheet';
use strict;
use warnings;
use Test::More tests => 6;
###############################################################################
#
# Tests setup.
#
my $expected;
my $got;
my $caption;
my $worksheet;
my $min;
my $max;
my $width;
my $format;
my $hidden;
my $level;
my $collapsed;
###############################################################################
#
# 1. Test the _write_col_info() method.
#
$min       = 1;
$max       = 3;
$width     = 5;
$format    = undef;
$hidden    = 0;
$level     = 0;
$collapsed = 0;
$caption  = " \tWorksheet: _write_col_info( $min, $max )";
$expected = '<col min="2" max="4" width="5.7109375" customWidth="1" />';
$worksheet = _new_worksheet( \$got );
$worksheet->_write_col_info( $min, $max, $width, $format, $hidden );
is( $got, $expected, $caption );
###############################################################################
#
# 2. Test the _write_col_info() method.
#
$min       = 5;
$max       = 5;
$width     = 8;
$format    = undef;
$hidden    = 1;
$level     = 0;
$collapsed = 0;
$caption  = " \tWorksheet: _write_col_info( $min, $max )";
$expected = '<col min="6" max="6" width="8.7109375" hidden="1" customWidth="1" />';
$worksheet = _new_worksheet( \$got );
$worksheet->_write_col_info( $min, $max, $width, $format, $hidden );
is( $got, $expected, $caption );
###############################################################################
#
# 3. Test the _write_col_info() method.
#
$min       = 7;
$max       = 7;
$width     = undef;
$format    = Excel::Writer::XLSX::Format->new( {}, {}, xf_index => 1 );
$hidden    = 0;
$level     = 0;
$collapsed = 0;
$caption  = " \tWorksheet: _write_col_info( $min, $max )";
$expected = '<col min="8" max="8" width="9.140625" style="1" />';
$worksheet = _new_worksheet( \$got );
$worksheet->_write_col_info( $min, $max, $width, $format, $hidden );
is( $got, $expected, $caption );
###############################################################################
#
# 4. Test the _write_col_info() method.
#
$min       = 8;
$max       = 8;
$width     = 8.43;
$format    = Excel::Writer::XLSX::Format->new( {}, {}, xf_index => 1 );
$hidden    = 0;
$level     = 0;
$collapsed = 0;
$caption  = " \tWorksheet: _write_col_info( $min, $max )";
$expected = '<col min="9" max="9" width="9.140625" style="1" />';
$worksheet = _new_worksheet( \$got );
$worksheet->_write_col_info( $min, $max, $width, $format, $hidden );
is( $got, $expected, $caption );
###############################################################################
#
# 5. Test the _write_col_info() method.
#
$min       = 9;
$max       = 9;
$width     = 2;
$format    = undef;
$hidden    = 0;
$level     = 0;
$collapsed = 0;
$caption  = " \tWorksheet: _write_col_info( $min, $max )";
$expected = '<col min="10" max="10" width="2.7109375" customWidth="1" />';
$worksheet = _new_worksheet( \$got );
$worksheet->_write_col_info( $min, $max, $width, $format, $hidden );
is( $got, $expected, $caption );
###############################################################################
#
# 6. Test the _write_col_info() method.
#
$min       = 11;
$max       = 11;
$width     = undef;
$format    = undef;
$hidden    = 1;
$level     = 0;
$collapsed = 0;
$caption  = " \tWorksheet: _write_col_info( $min, $max )";
$expected = '<col min="12" max="12" width="0" hidden="1" customWidth="1" />';
$worksheet = _new_worksheet( \$got );
$worksheet->_write_col_info( $min, $max, $width, $format, $hidden );
is( $got, $expected, $caption );
__END__
 |