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