nxdk_pgraph_tests
A collection of tests for the Xbox nv2a graphics processor
 
Loading...
Searching...
No Matches
degenerate_begin_end_tests.h
1#ifndef NXDK_PGRAPH_TESTS_DEGENERATE_BEGIN_END_TESTS_H
2#define NXDK_PGRAPH_TESTS_DEGENERATE_BEGIN_END_TESTS_H
3
4#include <memory>
5#include <vector>
6
7#include "test_host.h"
8#include "test_suite.h"
9
14 public:
15 DegenerateBeginEndTests(TestHost& host, std::string output_dir, const Config& config);
16
17 void Initialize() override;
18
19 private:
20 void TestBeginWithoutEnd();
21};
22
23#endif // NXDK_PGRAPH_TESTS_DEGENERATE_BEGIN_END_TESTS_H
Definition degenerate_begin_end_tests.h:13
void Initialize() override
Called to initialize the test suite.
Definition degenerate_begin_end_tests.cpp:24
Definition test_host.h:33
Definition test_suite.h:20
Runtime configuration for TestSuites.
Definition test_suite.h:23