ExportCest   A
last analyzed

Complexity

Total Complexity 16

Size/Duplication

Total Lines 221
Duplicated Lines 33.03 %

Coupling/Cohesion

Components 1
Dependencies 2

Importance

Changes 0
Metric Value
dl 73
loc 221
rs 10
c 0
b 0
f 0
wmc 16
lcom 1
cbo 2

16 Methods

Rating   Name   Duplication   Size   Complexity  
A _before() 0 3 1
A _after() 0 3 1
A it_should_export_evidence_confirm_for_all_visitors() 0 14 1
A it_should_export_evidence_for_all_visitors() 15 15 1
A it_should_export_evidence_summary() 16 16 1
A it_should_export_public_program() 0 14 1
A it_should_export_publically_public_program() 0 13 1
A it_should_export_private_program() 0 14 1
A it_should_export_meeting_shedule_in_big_format() 0 14 1
A it_should_export_meeting_shedule_into_badge() 0 13 1
A it_should_export_name_badges() 11 11 1
A it_should_export_attendance_list() 15 15 1
A it_should_export_name_list() 0 13 1
A it_should_export_meal_tickets() 16 16 1
A it_should_export_program_details() 0 14 1
A it_should_export_publically_program_details() 0 13 1

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php
2
3
4
class ExportCest extends CestCase
5
{
6
	public function _before(AcceptanceTester $I)
0 ignored issues
show
Unused Code introduced by
The parameter $I is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Coding Style Naming introduced by
The parameter $I is not named in camelCase.

This check marks parameter names that have not been written in camelCase.

In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. Thus the name database connection string becomes databaseConnectionString.

Loading history...
7
	{
8
	}
9
10
	public function _after(AcceptanceTester $I)
0 ignored issues
show
Unused Code introduced by
The parameter $I is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Coding Style Naming introduced by
The parameter $I is not named in camelCase.

This check marks parameter names that have not been written in camelCase.

In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. Thus the name database connection string becomes databaseConnectionString.

Loading history...
11
	{
12
	}
13
14
	// tests
15
	public function it_should_export_evidence_confirm_for_all_visitors(AcceptanceTester $I)
0 ignored issues
show
Coding Style Naming introduced by
The parameter $I is not named in camelCase.

This check marks parameter names that have not been written in camelCase.

In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. Thus the name database connection string becomes databaseConnectionString.

Loading history...
16
	{
17
		$I->wantTo('Export evidence cofirmation for all visitors');
18
		$I = $this->logIn($I);
19
		$I->amOnPage('/srazvs/export/?mid=1');
20
		$I->seeInCurrentUrl('/srazvs/export/');
21
		$I->click('potvrzení o přijetí zálohy');
22
		$I->seeInCurrentUrl('/srazvs/export/evidence/confirm');
23
		$I->see('POTVRZENÍ O PŘIJETÍ ZÁLOHY');
24
		$I->see('Přijato od:');
25
		$I->see('Účel platby:');
26
		$I->see('Celkem Kč:');
27
		$I->see('Slovy Kč:');
28
	}
29
30 View Code Duplication
	public function it_should_export_evidence_for_all_visitors(AcceptanceTester $I)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
Coding Style Naming introduced by
The parameter $I is not named in camelCase.

This check marks parameter names that have not been written in camelCase.

In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. Thus the name database connection string becomes databaseConnectionString.

Loading history...
31
	{
32
		$I->wantTo('Export evidence for all visitors');
33
		$I = $this->logIn($I);
34
		$I->amOnPage('/srazvs/export/?mid=1');
35
		$I->seeInCurrentUrl('/srazvs/export/');
36
		$I->click('příjmový pokladní doklad');
37
		$I->seeInCurrentUrl('/srazvs/export/evidence/');
38
		$I->see('PŘÍJMOVÝ POKLADNÍ DOKLAD');
39
		$I->see('Přijato od:');
40
		$I->see('Účel platby:');
41
		$I->see('Celkem Kč:');
42
		$I->see('Slovy Kč:');
43
		$I->see('Převzal:');
44
	}
45
46 View Code Duplication
	public function it_should_export_evidence_summary(AcceptanceTester $I)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
Coding Style Naming introduced by
The parameter $I is not named in camelCase.

This check marks parameter names that have not been written in camelCase.

In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. Thus the name database connection string becomes databaseConnectionString.

Loading history...
47
	{
48
		$I->wantTo('Export evidence summary');
49
		$I = $this->logIn($I);
50
		$I->amOnPage('/srazvs/export/?mid=1');
51
		$I->seeInCurrentUrl('/srazvs/export/');
52
		$I->click('kompletní příjmový pokladní doklad');
53
		$I->seeInCurrentUrl('/srazvs/export/evidence/summary');
54
		$I->see('Příjmení a Jméno');
55
		$I->see('Narození');
56
		$I->see('Adresa');
57
		$I->see('Jednotka');
58
		$I->see('Záloha');
59
		$I->see('Doplatek');
60
		$I->see('Podpis');
61
	}
62
63
	public function it_should_export_public_program(AcceptanceTester $I)
0 ignored issues
show
Coding Style Naming introduced by
The parameter $I is not named in camelCase.

This check marks parameter names that have not been written in camelCase.

In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. Thus the name database connection string becomes databaseConnectionString.

Loading history...
64
	{
65
		$I->wantTo('Export public program');
66
		$I = $this->logIn($I);
67
		$I->amOnPage('/srazvs/export/?mid=1');
68
		$I->seeInCurrentUrl('/srazvs/export/');
69
		$I->click('veřejný program');
70
		$I->seeInCurrentUrl('/srazvs/export/program/public');
71
		$I->see('program srazu vodních skautů');
72
		$I->see('pátek');
73
		$I->see('sobota');
74
		$I->see('neděle');
75
		$I->see('DEBUG_MODE');
76
	}
77
78
	public function it_should_export_publically_public_program(AcceptanceTester $I)
0 ignored issues
show
Coding Style Naming introduced by
The parameter $I is not named in camelCase.

This check marks parameter names that have not been written in camelCase.

In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. Thus the name database connection string becomes databaseConnectionString.

Loading history...
79
	{
80
		$I->wantTo('Export publically public program');
81
		$I->amOnPage('/srazvs/program/public');
82
		$I->seeInCurrentUrl('/srazvs/program/public');
83
		$I->click('Stáhněte si program srazu ve formátu PDF');
84
		$I->seeInCurrentUrl('/srazvs/export/program/public/');
85
		$I->see('program srazu vodních skautů');
86
		$I->see('pátek');
87
		$I->see('sobota');
88
		$I->see('neděle');
89
		$I->see('DEBUG_MODE');
90
	}
91
92
	public function it_should_export_private_program(AcceptanceTester $I)
0 ignored issues
show
Coding Style Naming introduced by
The parameter $I is not named in camelCase.

This check marks parameter names that have not been written in camelCase.

In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. Thus the name database connection string becomes databaseConnectionString.

Loading history...
93
	{
94
		$I->wantTo('Export private program');
95
		$I = $this->logIn($I);
96
		$I->amOnPage('/srazvs/export/?mid=1');
97
		$I->seeInCurrentUrl('/srazvs/export/');
98
		$I->click('osobní program');
99
		$I->seeInCurrentUrl('/srazvs/export/program/cards');
100
		$I->see('SRAZ VS');
101
		$I->see('pátek');
102
		$I->see('sobota');
103
		//$I->see('neděle');
104
		$I->see('DEBUG_MODE');
105
	}
106
107
	public function it_should_export_meeting_shedule_in_big_format(AcceptanceTester $I)
0 ignored issues
show
Coding Style Naming introduced by
The parameter $I is not named in camelCase.

This check marks parameter names that have not been written in camelCase.

In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. Thus the name database connection string becomes databaseConnectionString.

Loading history...
108
	{
109
		$I->wantTo('Export meeting schedule in big format');
110
		$I = $this->logIn($I);
111
		$I->amOnPage('/srazvs/export/?mid=1');
112
		$I->seeInCurrentUrl('/srazvs/export/');
113
		$I->click('program srazu - velký formát');
114
		$I->seeInCurrentUrl('/srazvs/export/program/large');
115
		$I->see('program srazu vodních skautů');
116
		$I->see('pátek');
117
		$I->see('sobota');
118
		$I->see('neděle');
119
		$I->see('DEBUG_MODE');
120
	}
121
122
	public function it_should_export_meeting_shedule_into_badge(AcceptanceTester $I)
0 ignored issues
show
Coding Style Naming introduced by
The parameter $I is not named in camelCase.

This check marks parameter names that have not been written in camelCase.

In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. Thus the name database connection string becomes databaseConnectionString.

Loading history...
123
	{
124
		$I->wantTo('Export meeting schedule into visitor`s badge');
125
		$I = $this->logIn($I);
126
		$I->amOnPage('/srazvs/export/?mid=1');
127
		$I->seeInCurrentUrl('/srazvs/export/');
128
		$I->click('program srazu - do visačky');
129
		$I->seeInCurrentUrl('/srazvs/export/program/badge');
130
		$I->see('pátek');
131
		$I->see('sobota');
132
		$I->see('neděle');
133
		$I->see('DEBUG_MODE');
134
	}
135
136 View Code Duplication
	public function it_should_export_name_badges(AcceptanceTester $I)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
Coding Style Naming introduced by
The parameter $I is not named in camelCase.

This check marks parameter names that have not been written in camelCase.

In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. Thus the name database connection string becomes databaseConnectionString.

Loading history...
137
	{
138
		$I->wantTo('Export name badges');
139
		$I = $this->logIn($I);
140
		$I->amOnPage('/srazvs/export/?mid=1');
141
		$I->seeInCurrentUrl('/srazvs/export/');
142
		$I->click('jmenovky');
143
		$I->seeInCurrentUrl('/srazvs/export/name-badges');
144
		$I->see('roboTester');
145
		$I->see('DEBUG_MODE');
146
	}
147
148 View Code Duplication
	public function it_should_export_attendance_list(AcceptanceTester $I)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
Coding Style Naming introduced by
The parameter $I is not named in camelCase.

This check marks parameter names that have not been written in camelCase.

In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. Thus the name database connection string becomes databaseConnectionString.

Loading history...
149
	{
150
		$I->wantTo('Export attendance list');
151
		$I = $this->logIn($I);
152
		$I->amOnPage('/srazvs/export/?mid=1');
153
		$I->seeInCurrentUrl('/srazvs/export/');
154
		$I->click('prezenční listina');
155
		$I->seeInCurrentUrl('/srazvs/export/attendance');
156
		$I->see('Příjmení a Jméno');
157
		$I->see('Narození');
158
		$I->see('Adresa');
159
		$I->see('Středisko/Přístav');
160
		$I->see('Podpis');
161
		$I->see('DEBUG_MODE');
162
	}
163
164
	public function it_should_export_name_list(AcceptanceTester $I)
0 ignored issues
show
Coding Style Naming introduced by
The parameter $I is not named in camelCase.

This check marks parameter names that have not been written in camelCase.

In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. Thus the name database connection string becomes databaseConnectionString.

Loading history...
165
	{
166
		$I->wantTo('Export name list');
167
		$I = $this->logIn($I);
168
		$I->amOnPage('/srazvs/export/?mid=1');
169
		$I->seeInCurrentUrl('/srazvs/export/');
170
		$I->click('jmenný seznam');
171
		$I->seeInCurrentUrl('/srazvs/export/name-list');
172
		$I->see('Příjmení, Jméno, Přezdívka');
173
		$I->see('Adresa');
174
		$I->see('Středisko/Přístav');
175
		$I->see('DEBUG_MODE');
176
	}
177
178 View Code Duplication
	public function it_should_export_meal_tickets(AcceptanceTester $I)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
Coding Style Naming introduced by
The parameter $I is not named in camelCase.

This check marks parameter names that have not been written in camelCase.

In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. Thus the name database connection string becomes databaseConnectionString.

Loading history...
179
	{
180
		$I->wantTo('Export meal tickets');
181
		$I = $this->logIn($I);
182
		$I->amOnPage('/srazvs/export/?mid=1');
183
		$I->seeInCurrentUrl('/srazvs/export/');
184
		$I->click('stravenky');
185
		$I->seeInCurrentUrl('/srazvs/export/meal-ticket');
186
		$I->see('Pátek');
187
		$I->see('Sobota');
188
		$I->see('Neděle');
189
		$I->see('Snídaně');
190
		$I->see('Oběd');
191
		$I->see('Večeře');
192
		$I->see('DEBUG_MODE');
193
	}
194
195
	public function it_should_export_program_details(AcceptanceTester $I)
0 ignored issues
show
Coding Style Naming introduced by
The parameter $I is not named in camelCase.

This check marks parameter names that have not been written in camelCase.

In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. Thus the name database connection string becomes databaseConnectionString.

Loading history...
196
	{
197
		$I->wantTo('Export program details');
198
		$I = $this->logIn($I);
199
		$I->amOnPage('/srazvs/export/?mid=1');
200
		$I->seeInCurrentUrl('/srazvs/export/');
201
		$I->click('detaily programů');
202
		$I->seeInCurrentUrl('/srazvs/export/program/details');
203
		$I->see('Program:');
204
		$I->see('Popis:');
205
		$I->see('Lektor:');
206
		$I->see('E-mail:');
207
		$I->see('DEBUG_MODE');
208
	}
209
210
	public function it_should_export_publically_program_details(AcceptanceTester $I)
0 ignored issues
show
Coding Style Naming introduced by
The parameter $I is not named in camelCase.

This check marks parameter names that have not been written in camelCase.

In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. Thus the name database connection string becomes databaseConnectionString.

Loading history...
211
	{
212
		$I->wantTo('Export publically program details');
213
		$I->amOnPage('/srazvs/program/public?mid=1');
214
		$I->seeInCurrentUrl('/srazvs/program/public');
215
		$I->click('Stáhněte si detaily programů srazu ve formátu PDF', '#content-pad-program');
216
		$I->seeInCurrentUrl('/srazvs/export/program/details/');
217
		$I->see('Program:');
218
		$I->see('Popis:');
219
		$I->see('Lektor:');
220
		$I->see('E-mail:');
221
		$I->see('DEBUG_MODE');
222
	}
223
224
}
225