Documentation for module: Graphics
Former-commit-id: 5fba876346aec7b35bc618002b669ff194e58544
This commit is contained in:
20
tests/Engine/Graphics/TextureBackground.cpp
Normal file
20
tests/Engine/Graphics/TextureBackground.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
#include <Nazara/Graphics/TextureBackground.hpp>
|
||||
#include <Catch/catch.hpp>
|
||||
|
||||
SCENARIO("TextureBackground", "[GRAPHICS][TEXTUREBACKGROUND]")
|
||||
{
|
||||
GIVEN("A default texture background")
|
||||
{
|
||||
Nz::TextureRef textureRef = Nz::Texture::New();
|
||||
textureRef->LoadFromFile("resources/Engine/Graphics/skybox.png");
|
||||
Nz::TextureBackgroundRef textureBackgroundRef = Nz::TextureBackground::New(textureRef);
|
||||
|
||||
WHEN("We assign it parameters")
|
||||
{
|
||||
THEN("We can get it")
|
||||
{
|
||||
REQUIRE(textureBackgroundRef->GetTexture().Get() == textureRef.Get());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user