[#25] Removed replaced vis tests from test-emmber_builder-gettersetter
parent
5959956a27
commit
a959e99b06
|
@ -128,42 +128,6 @@ function assertOnlyVisibility( vis, name, value, message )
|
|||
}
|
||||
|
||||
|
||||
( function testRecognizesPublicProperty()
|
||||
{
|
||||
buildGetterSetterQuick( { 'public': true } );
|
||||
|
||||
assertOnlyVisibility( 'public',
|
||||
name,
|
||||
value,
|
||||
"Public properties are copied only to the public member prototype"
|
||||
);
|
||||
} )();
|
||||
|
||||
|
||||
( function testRecognizesProtectedProperty()
|
||||
{
|
||||
buildGetterSetterQuick( { 'protected': true } );
|
||||
|
||||
assertOnlyVisibility( 'protected',
|
||||
name,
|
||||
value,
|
||||
"Protected properties are copied only to the protected member prototype"
|
||||
);
|
||||
} )();
|
||||
|
||||
|
||||
( function testRecognizesPrivateProperty()
|
||||
{
|
||||
buildGetterSetterQuick( { 'private': true } );
|
||||
|
||||
assertOnlyVisibility( 'private',
|
||||
name,
|
||||
value,
|
||||
"Private properties are copied only to the private member prototype"
|
||||
);
|
||||
} )();
|
||||
|
||||
|
||||
( function testCopiedIntoPublicPrototypeByDefault()
|
||||
{
|
||||
buildGetterSetterQuick();
|
||||
|
|
Loading…
Reference in New Issue