Skip to content
This repository has been archived by the owner on Nov 17, 2024. It is now read-only.

Commit

Permalink
Starting unitTest development
Browse files Browse the repository at this point in the history
  • Loading branch information
Captainjamason committed Feb 8, 2024
1 parent 03b93ab commit 60975ec
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@


project('opencxx-cli', 'cpp',
version : '0.0.1',
version : '0.0.2',
license : 'GPL3',
)

Expand Down
2 changes: 2 additions & 0 deletions src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,6 @@ opencxx_cli = library('opencxx-cli',
include_directories : inc,
)

unitTests = executable('unitTests', 'unitTests.cpp')

pkg.generate(opencxx_cli)
17 changes: 17 additions & 0 deletions src/unitTests.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// opencxx_cli
// unitTests.cpp
// Copyright 2024 - hurbIndustries
// JPD

#include <vector>
#include "../include/cli.h"

// Some basic initialization...
using namespace opencxx_cli;
CLI cli;
std::vector<CLI::entryData> entries;

int main() {
// test output messages...
if()
}

0 comments on commit 60975ec

Please sign in to comment.