3 Test lldb data formatter subsystem.
8 from lldbsuite.test.decorators import *
9 from lldbsuite.test.lldbtest import *
10 from lldbsuite.test import lldbutil
12 from ObjCDataFormatterTestCase import ObjCDataFormatterTestCase
15 class ObjCDataFormatterNSBundle(ObjCDataFormatterTestCase):
18 def test_nsbundle_with_run_command(self):
19 """Test formatters for NSBundle."""
20 self.appkit_tester_impl(self.nsbundle_data_formatter_commands)
22 def nsbundle_data_formatter_commands(self):
24 'frame variable bundle_string bundle_url main_bundle',
26 '(NSBundle *) bundle_string = ',
27 ' @"/System/Library/Frameworks/Accelerate.framework"',
28 '(NSBundle *) bundle_url = ',
29 ' @"/System/Library/Frameworks/Foundation.framework"',
30 '(NSBundle *) main_bundle = ', 'data-formatter-objc'