MCPcopy Create free account
hub / github.com/Illation/ETEngine / Process

Method Process

Engine/unit_tests/ECS/EcsTestUtilities.cpp:62–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

60//---------
61
62void TestBCSystem::Process(fw::ComponentRange<TestBCView>& range)
63{
64 size_t idx = 0u;
65
66 for (TestBCView& view : range)
67 {
68 REQUIRE(view.b->name == std::to_string(idx));
69 REQUIRE(view.c->val == static_cast<uint32>(idx));
70
71 idx++;
72 }
73}
74
75
76void TestOverwriteSystem::Process(fw::ComponentRange<TestOverwriteSystemView>& range)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected