KStocky / ShaderTestFramework

An automation testing framework for testing shader code
MIT License
20 stars 1 forks source link

Named scenarios and sections #66

Closed KStocky closed 2 months ago

KStocky commented 2 months ago

This rather large pull request introduces the following:

  1. String support - We have ttl::string
  2. Named scenarios and sections - scenarios and sections now act like they would in catch2. They must be given a string name, and if an assert fails from within a section, the failed assert message is formatted to show the section hierarchy of the failing assert.

Additionally, documentation and examples have been updated to reflect this large change. closes #40 closes #25