KiCad PCB EDA Suite
Loading...
Searching...
No Matches
eeschema_test_utils.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2019-2023 KiCad Developers, see AUTHORS.TXT for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24#ifndef QA_EESCHEMA_EESCHEMA_TEST_UTILS__H
25#define QA_EESCHEMA_EESCHEMA_TEST_UTILS__H
26
27
28#include <schematic.h>
30#include <sch_io/sch_io_mgr.h>
31#include <wx/filename.h>
32
33#include <connection_graph.h>
38#include <project.h>
39#include <sch_sheet.h>
40#include <schematic.h>
43
44namespace KI_TEST
45{
50{
51public:
53 : m_schematic( nullptr ),
54 m_pi( SCH_IO_MGR::FindPlugin( SCH_IO_MGR::SCH_KICAD ) ),
55 m_manager( true )
56 { }
57
59 {
61 m_pi.reset();
62 }
63
64protected:
65 virtual void LoadSchematic( const wxString& aRelativePath );
66 virtual wxFileName GetSchematicPath( const wxString& aBaseName );
67
71};
72
73
74} // namespace KI_TEST
75
76
77template <typename Exporter>
79{
80public:
81 virtual wxString GetNetlistPath( bool aTest = false );
82 virtual unsigned GetNetlistOptions() { return 0; }
83
84 void WriteNetlist();
85
86 virtual void CompareNetlists() = 0;
87
88 void Cleanup();
89
90 void TestNetlist( const wxString& aBaseName );
91};
92
93#endif // QA_EESCHEMA_EESCHEMA_TEST_UTILS__H
A generic fixture for loading schematics and associated settings for qa tests.
virtual void LoadSchematic(const wxString &aRelativePath)
virtual wxFileName GetSchematicPath(const wxString &aBaseName)
Holds all the data relating to one schematic.
Definition: schematic.h:75
void Reset()
Initialize this schematic to a blank one, unloading anything existing.
Definition: schematic.cpp:128
A factory which returns an instance of a SCH_IO.
Definition: sch_io_mgr.h:52
void TestNetlist(const wxString &aBaseName)
virtual void CompareNetlists()=0
virtual unsigned GetNetlistOptions()
virtual wxString GetNetlistPath(bool aTest=false)
std::unique_ptr< T > IO_RELEASER
Helper to hold and release an IO_BASE object when exceptions are thrown.
Definition: io_mgr.h:33
Definition of file extensions used in Kicad.