-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 46fe027
Showing
11 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Q - The next iteration of VADER | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#pragma once | ||
using namespace std; | ||
|
||
class ControllerModule : public Module { | ||
public: | ||
TODO registerStorageNeeds(void); | ||
virtual void run(void) = 0; | ||
virtual void init(void) = 0; | ||
virtual void shutdown(void) = 0; | ||
}; |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#pragma once | ||
|
||
using namespace std; | ||
|
||
class ExecutorModule : public Module { | ||
public: | ||
void registerStorageNeeds(void); | ||
void runTestCase(int test_case_id); | ||
void run(void) = 0; | ||
void init(void) = 0; | ||
void shutdown(void) = 0; | ||
}; |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#pragma once | ||
|
||
using namespace std; | ||
|
||
class Module { | ||
public: | ||
virtual void init() = 0; | ||
virtual void registerStorageNeeds() = 0; | ||
virtual void run() = 0; | ||
protected: | ||
SUT* current_sut; | ||
Module(string path, string[] params); | ||
}: | ||
|
||
typedef struct { | ||
string path; | ||
string[] params; | ||
} SUT; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#pragma once | ||
|
||
using namespace std; | ||
|
||
#include "Module.hpp" | ||
|
||
class MutatorModule: public Module { | ||
public: | ||
virtual void createInitialTestCases(void) = 0; | ||
virtual void addNewTestCase(int) = 0; | ||
}; |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#pragma once | ||
|
||
using namespace std; | ||
|
||
#include "Module.hpp" | ||
|
||
class PostProcessorModule: public Module { | ||
public: | ||
|
||
}; |
Empty file.
Empty file.