File: projectdisplayfeature.cpp

package info (click to toggle)
zanshin 25.08.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 4,664 kB
  • sloc: cpp: 35,502; xml: 1,393; sh: 16; makefile: 5
file content (39 lines) | stat: -rw-r--r-- 1,199 bytes parent folder | download | duplicates (4)
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
/*
 * SPDX-FileCopyrightText: 2019 Kevin Ottens <ervin@kde.org>
   SPDX-FileCopyrightText: 2019 David Faure <faure@kde.org>
 * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
 */


#include <testlib/qtest_zanshin.h>
#include <featurelib/zanshincontext.h>

using namespace Testlib;

// Feature: Project content
//   As someone collecting tasks
//   I can display a project
//   In order to see the artifacts associated to it
class ProjectDisplayFeature : public QObject
{
    Q_OBJECT
private slots:
    void Project_tasks_appear_in_the_corresponding_page()
    {
        ZanshinContext c;
        Given(c.I_display_the_page("Projects / TestData ยป Calendar1 / Read List"));
        And(c.I_look_at_the_central_list());
        When(c.I_list_the_items());
        Then(c.the_list_is({
                             { "display" },
                             {
                                 { "\"Clean Code\" by Robert C Martin" },
                                 { "\"Domain Driven Design\" by Eric Evans" },
                             }
                         }));
    }
};

ZANSHIN_TEST_MAIN(ProjectDisplayFeature)

#include "projectdisplayfeature.moc"