Exemplo n.º 1
0
 def test_get_from_field_without_visibility_should_be_private(self):
     assert_that(get_visibility(
         FieldDeclaration('int', [], modifiers=['private'])),
         equal_to(Visibility.PRIVATE))
Exemplo n.º 2
0
 def test_get_from_public_method_should_be_public(self):
     assert_that(get_visibility(
         MethodDeclaration('', return_type='void', modifiers=['public'])),
         equal_to(Visibility.PUBLIC))
Exemplo n.º 3
0
 def test_get_from_protected_field_should_be_protected(self):
     assert_that(get_visibility(
         FieldDeclaration('int', [], modifiers=['protected'])),
         equal_to(Visibility.PROTECTED))
Exemplo n.º 4
0
 def test_get_from_public_field_should_be_public(self):
     assert_that(get_visibility(
         FieldDeclaration('int', [], modifiers=['public'])),
         equal_to(Visibility.PUBLIC))