You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Karl Heinz Marbaise (Jira)" <ji...@apache.org> on 2021/09/30 19:44:00 UTC

[jira] [Updated] (MNG-7277) Remove useless Test - testNonNumericVersionRepresentationReturnsANumberFormatException

     [ https://issues.apache.org/jira/browse/MNG-7277?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Karl Heinz Marbaise updated MNG-7277:
-------------------------------------
    Summary: Remove useless Test - testNonNumericVersionRepresentationReturnsANumberFormatException  (was: Remove Wrong or useless Tests)

> Remove useless Test - testNonNumericVersionRepresentationReturnsANumberFormatException
> --------------------------------------------------------------------------------------
>
>                 Key: MNG-7277
>                 URL: https://issues.apache.org/jira/browse/MNG-7277
>             Project: Maven
>          Issue Type: Improvement
>    Affects Versions: 4.0.0-alpha-1
>            Reporter: Karl Heinz Marbaise
>            Assignee: Karl Heinz Marbaise
>            Priority: Minor
>             Fix For: 4.0.0
>
>
> Currently the following test:
> {code:java}
>     public void testNonNumericVersionRepresentationReturnsANumberFormatException()
>     {
>         try
>         {
>             new DefaultArtifactVersion( "..." );
>         }
>         catch ( Exception e )
>         {
>             assertTrue( "We expect a NumberFormatException to be thrown.", e instanceof NumberFormatException );
>         }
>     }
> {code}
> is expected to throw an {{NumberFormatException}} which is not the case because
> The exception is *not* thrown by the underlying code. 
> This means this test is wrong. The {{catch}} part will never being executed but the test is reported being green!



--
This message was sent by Atlassian Jira
(v8.3.4#803005)