| 20 | {} |
| 21 | |
| 22 | void SetUp() override { |
| 23 | ASSERT_TRUE(GetAlignedMemory(StackSizeInPages, RawMemory_, AlignedMemory_)); |
| 24 | Stack_ = MakeHolder<NDetails::TStack>(RawMemory_, AlignedMemory_, StackSize_, "test_stack"); |
| 25 | Guard_.Protect(AlignedMemory_, StackSize_, false); |
| 26 | } |
| 27 | |
| 28 | void TearDown() override { |
| 29 | Guard_.RemoveProtection(AlignedMemory_, StackSize_); |
nothing calls this directly
no test coverage detected