Properly name the test class as well as the test methods.

llvm-svn: 146957
This commit is contained in:
Johnny Chen 2011-12-20 02:14:01 +00:00
parent 2c684f00a3
commit 5d95a87c4b
1 changed files with 3 additions and 3 deletions

View File

@ -8,19 +8,19 @@ import unittest2
import lldb, lldbutil
from lldbtest import *
class ObjCDynamicValueTestCase(TestBase):
class ObjCPropertyTestCase(TestBase):
mydir = os.path.join("lang", "objc", "objc-property")
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
@python_api_test
def test_get_dynamic_objc_vals_with_dsym(self):
def test_objc_properties_with_dsym(self):
"""Test that expr uses the correct property getters and setters"""
self.buildDsym()
self.do_test_properties()
@python_api_test
def test_get_objc_dynamic_vals_with_dwarf(self):
def test_objc_properties_with_dwarf(self):
"""Test that expr uses the correct property getters and setters"""
self.buildDwarf()
self.do_test_properties()