core/stacklist: add tests

This commit is contained in:
outfoxxed 2025-01-15 02:47:14 -08:00
parent 6024c37492
commit c2ed5bf559
Signed by untrusted user: outfoxxed
GPG key ID: 4C88A185FB89301E
4 changed files with 123 additions and 1 deletions

View 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();
};