You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import time
import unittest
from apiritif import http, transaction
target = http.target('https://jsonplaceholder.typicode.com')
target.keep_alive(True)
target.auto_assert_ok(False)
target.use_cookies(True)
class TestRequests2(unittest.TestCase):
def test_1_single_request(self):
target.get('/')
class TestRequests(unittest.TestCase):
# will produce test-case sample with one sub-sample
def test_1_single_request(self):
target.get('/')
Expected : TestRequests and TestRequests2 in the report
Actual : Everything goes inside TestRequests
The text was updated successfully, but these errors were encountered:
Sorry, it somehow took a while to reproduce that one. Can you post a screenshot of your report?
It looks like a nuance of BlazeMeter reports for functional tests. Every sample is merged into a single tree with a single root element. That's why samples got inside a single root.
Expected : TestRequests and TestRequests2 in the report
Actual : Everything goes inside TestRequests
The text was updated successfully, but these errors were encountered: