This commit is contained in:
2026-02-12 21:00:02 -08:00
parent 77f8236347
commit 8bdbf227ca
1141 changed files with 1010880 additions and 2 deletions

View File

@@ -0,0 +1,151 @@
#include "AudioTools.h"
void print(const char *title, Vector<int> &vector) {
Serial.println(title);
for (int j = 0; j < vector.size(); j++) {
Serial.print(vector[j]);
Serial.print(" ");
}
Serial.println();
Serial.println();
}
void testPushBack() {
Vector<int> vector;
for (int j = 0; j < 10; j++) {
vector.push_back(j);
}
print("testPushBack", vector);
for (int j = 0; j < 10; j++) {
assert(vector[j] == j);
}
}
void testPushFront() {
Vector<int> vector;
for (int j = 0; j < 10; j++) {
vector.push_front(j);
}
print("testPushFront", vector);
for (int j = 0; j < 10; j++) {
assert(vector[9 - j] == j);
}
}
void testPopFront() {
Vector<int> vector;
for (int j = 0; j < 10; j++) {
vector.push_back(j);
}
vector.pop_front();
print("testPopFront", vector);
assert(vector.size() == 9);
for (int j = 0; j < 9; j++) {
assert(vector[j] == j + 1);
}
}
void testPopBack() {
Vector<int> vector;
for (int j = 0; j < 10; j++) {
vector.push_back(j);
}
vector.pop_back();
print("testPopBack", vector);
assert(vector.size() == 9);
for (int j = 0; j < 9; j++) {
assert(vector[j] == j);
}
}
void testErase() {
Vector<int> vector;
for (int j = 0; j < 10; j++) {
vector.push_back(j);
}
vector.erase(0);
print("testErase", vector);
assert(vector.size() == 9);
for (int j = 0; j < 9; j++) {
assert(vector[j] == j + 1);
}
}
void testCopy() {
Vector<int> vector;
for (int j = 0; j < 10; j++) {
vector.push_back(j);
}
print("testCopy", vector);
for (int j = 0; j < 9; j++) {
assert(vector[j] == j);
}
Vector<int> v1{vector};
assert(v1.size()==10);
for (int j = 0; j < 9; j++) {
assert(v1[j] == j);
}
Vector<int> v2 = vector;
assert(v2.size()==10);
for (int j = 0; j < 9; j++) {
assert(v1[j] == j);
}
vector.erase(0);
assert(v1.size()==10);
assert(v2.size()==10);
}
void testArg1(Vector<int> arg){
print("testArg1", arg);
assert(arg.size()==10);
}
void testArg2(Vector<int> &arg){
print("testArg2", arg);
assert(arg.size()==10);
}
Vector<int> testArg3(Vector<int> arg){
print("testArg3", arg);
Vector<int> result = arg;
assert(result.size()==10);
return result;
}
void testArg() {
Vector<int> vector;
for (int j = 0; j < 10; j++) {
vector.push_back(j);
}
testArg1(vector);
testArg2(vector);
Vector<int> v3 = testArg3(vector);
assert(v3.size()==10);
for (int j = 0; j < 9; j++) {
assert(v3[j] == j);
}
}
void setup() {
Serial.begin(115200);
testPushBack();
testPushFront();
testPopFront();
testPopBack();
testErase();
testCopy();
testArg();
Serial.print("All tests passed");
}
void loop() {}