File: testdevice.h

package info (click to toggle)
kpmcore 24.12.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,696 kB
  • sloc: cpp: 20,700; sh: 22; makefile: 7
file content (34 lines) | stat: -rw-r--r-- 679 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
/*
    SPDX-FileCopyrightText: 2019 Shubham Jangra <aryan100jangid@gmail.com>
    SPDX-FileCopyrightText: 2019 Andrius Štikonas <andrius@stikonas.eu>

    SPDX-License-Identifier: GPL-3.0-or-later
*/
 
#ifndef TESTDEVICE_H
#define TESTDEVICE_H

#include "core/device.h"
#include "core/devicescanner.h"
#include "core/operationstack.h" 
 
#include <QList> 
 
class TestDevice
{
public:
    TestDevice();
   ~TestDevice();

    void testDeviceName();
    void testDeviceNode();
    void testDeviceSize();
    void testDeviceTotalSectors();
    
private:
    OperationStack *operationStack;
    DeviceScanner *deviceScanner;
    QList <Device*> devices;
};

#endif // TESTDEVICE_H