File: AttachedSeparatorTest.cpp

package info (click to toggle)
kimageannotator 0.7.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,904 kB
  • sloc: cpp: 21,502; makefile: 16; ansic: 13
file content (96 lines) | stat: -rw-r--r-- 2,593 bytes parent folder | download | duplicates (3)
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
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
/*
 * Copyright (C) 2021 Damir Porobic <damir.porobic@gmx.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 */

#include "AttachedSeparatorTest.h"

void AttachedSeparatorTest::Constructor_Should_SetupInitialVisibilityToFalse_When_TargetPickerInitiallyNotVisible()
{
	// arrange
	BoolPicker picker(nullptr);
	picker.setVisible(false);

	// act
	AttachedSeparator separator(&picker);

	// assert
	QCOMPARE(separator.isVisible(), false);
}

void AttachedSeparatorTest::Constructor_Should_SetupInitialVisibilityToTrue_When_TargetPickerInitiallyVisible()
{
	// arrange
	BoolPicker picker(nullptr);
	picker.setVisible(true);

	// act
	AttachedSeparator separator(&picker);

	// assert
	QCOMPARE(separator.isVisible(), true);
}

void AttachedSeparatorTest::UpdateVisibility_Should_ChangeVisibility_When_TargetPickerVisibilityChanged()
{
	// arrange
	BoolPicker picker(nullptr);
	picker.setVisible(true);
	AttachedSeparator separator(&picker);
	QCOMPARE(separator.isVisible(), true);

	// act
	picker.setVisible(false);

	// assert
	QCOMPARE(separator.isVisible(), false);
}

void AttachedSeparatorTest::UpdateVisibility_Should_NotChangeVisibility_When_TargetPickerVisibilityChangedButSeparatorIsDisabled()
{
	// arrange
	BoolPicker picker(nullptr);
	picker.setVisible(false);
	AttachedSeparator separator(&picker);
	QCOMPARE(separator.isVisible(), false);
	separator.setEnabled(false);

	// act
	picker.setVisible(true);

	// assert
	QCOMPARE(separator.isVisible(), false);
}

void AttachedSeparatorTest::SetEnabled_Should_UpdateVisibilityToFalse_When_Disabled()
{
	// arrange
	BoolPicker picker(nullptr);
	picker.setVisible(true);
	AttachedSeparator separator(&picker);
	QCOMPARE(separator.isVisible(), true);

	// act
	separator.setEnabled(false);
	separator.setEnabled(false);

	// assert
	QCOMPARE(separator.isVisible(), false);
	QCOMPARE(picker.isVisible(), true);
}

TEST_MAIN(AttachedSeparatorTest)