2018-01-22 22:38:48 +08:00
|
|
|
// Copyright (c) 2014-2018 Thomas Fussell
|
2017-04-14 07:01:30 +08:00
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, WRISING FROM,
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
// THE SOFTWARE
|
|
|
|
//
|
|
|
|
// @license: http://www.opensource.org/licenses/mit-license.php
|
|
|
|
// @author: see AUTHORS file
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
2017-04-14 07:24:20 +08:00
|
|
|
#include <helpers/test_suite.hpp>
|
2017-04-14 07:01:30 +08:00
|
|
|
#include <xlnt/xlnt.hpp>
|
|
|
|
|
|
|
|
class page_setup_test_suite : public test_suite
|
|
|
|
{
|
|
|
|
public:
|
2017-04-14 07:24:20 +08:00
|
|
|
page_setup_test_suite()
|
|
|
|
{
|
|
|
|
register_test(test_properties);
|
|
|
|
}
|
|
|
|
|
2017-04-14 07:01:30 +08:00
|
|
|
void test_properties()
|
|
|
|
{
|
|
|
|
xlnt::page_setup ps;
|
|
|
|
|
2017-04-19 06:30:54 +08:00
|
|
|
xlnt_assert_equals(ps.paper_size(), xlnt::paper_size::letter);
|
2017-04-14 07:01:30 +08:00
|
|
|
ps.paper_size(xlnt::paper_size::executive);
|
2017-04-19 06:30:54 +08:00
|
|
|
xlnt_assert_equals(ps.paper_size(), xlnt::paper_size::executive);
|
2017-04-14 07:01:30 +08:00
|
|
|
|
2018-06-24 08:34:56 +08:00
|
|
|
xlnt_assert(!ps.orientation_.is_set());
|
|
|
|
ps.orientation_.set(xlnt::orientation::landscape);
|
|
|
|
xlnt_assert_equals(ps.orientation_.get(), xlnt::orientation::landscape);
|
2017-04-14 07:01:30 +08:00
|
|
|
|
2017-04-19 06:30:54 +08:00
|
|
|
xlnt_assert(!ps.fit_to_page());
|
2017-04-14 07:01:30 +08:00
|
|
|
ps.fit_to_page(true);
|
2017-04-19 06:30:54 +08:00
|
|
|
xlnt_assert(ps.fit_to_page());
|
2017-04-14 07:01:30 +08:00
|
|
|
|
2017-04-19 06:30:54 +08:00
|
|
|
xlnt_assert(!ps.fit_to_height());
|
2017-04-14 07:01:30 +08:00
|
|
|
ps.fit_to_height(true);
|
2017-04-19 06:30:54 +08:00
|
|
|
xlnt_assert(ps.fit_to_height());
|
2017-04-14 07:01:30 +08:00
|
|
|
|
2017-04-19 06:30:54 +08:00
|
|
|
xlnt_assert(!ps.fit_to_width());
|
2017-04-14 07:01:30 +08:00
|
|
|
ps.fit_to_width(true);
|
2017-04-19 06:30:54 +08:00
|
|
|
xlnt_assert(ps.fit_to_width());
|
2017-04-14 07:01:30 +08:00
|
|
|
}
|
|
|
|
};
|