forked from quickshell/quickshell
core/stacklist: add tests
This commit is contained in:
parent
6024c37492
commit
c2ed5bf559
4 changed files with 123 additions and 1 deletions
15
src/core/test/stacklist.hpp
Normal file
15
src/core/test/stacklist.hpp
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#pragma once
|
||||
|
||||
#include <qobject.h>
|
||||
#include <qtmetamacros.h>
|
||||
|
||||
class TestStackList: public QObject {
|
||||
Q_OBJECT;
|
||||
|
||||
private slots:
|
||||
static void push();
|
||||
static void pushAndGrow();
|
||||
static void copy();
|
||||
static void viewVla();
|
||||
static void viewVlaGrown();
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue