Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jdt-dev] junits not hooked anywhere
  • From: "Sankaran, Srikanth" <srikanth.sankaran@xxxxxxxxxxxxx>
  • Date: Thu, 27 Jun 2024 12:12:03 +0000
  • Accept-language: en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=advantest.com; dmarc=pass action=none header.from=advantest.com; dkim=pass header.d=advantest.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=WxjvOGLUFeMsZmpIkzEaK6rmKTPxUn1kd+lnCHmYR6k=; b=EKltBsxmTIduMv7eTTDB+td7MMZwnH/BHJed+CybXYgco4XXhfLpDQ7xBJwugBiiXdf3EL855oNeyeDRUH2nqCaD7XyEoF2yRNge0Phzf5Co7Y+fullXqMbdyoKgUCEHyRB7myvgDwyvIqhIuguscVTFXSr+jOC9lLdcWsRYjMjkOZsOklkZRaifXc8+Btar8GtQgvvz+9+ysJ7Gof1gx+Niym5MyBwM3yuQ/XfP4NAMoFWHsWsjgG7AS2TiL1AvWAsQSnbu8cx1VC2y/pDuVHhWUavc8JnvDNSYXmLIGNc1a2M+OjVHq36z2W66cl+LAnRAHkV1J5n1VjlIgQ82QA==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=Jw5sd4f6mpjiNxHgPdAbuns6C4Ej5Q120RExgk27+P1WskQTi3p+30Fi1l9g3nrol0mk0v8X5fTBK9SpxQq2AJGikz84vytnkxg30Bmfpd5fiopi5lzLCusApmawuSC9m27zYYLesGCdi3hnxgqgJXycy/gre61NaAeWx6VTI1IMfnKGJJVgfBhtoGMdpaVlPNqBilfWV50BbZFw8b1nEykP5X5lG2562n54BV0wc8B8jaWG0uI0yJC41DIqtBBOQXjjNx6hM7pKlHSb26Y7DDLXOvQKY0WGQx8v7G+fZvlmx/YIOsz3vjkUgw2ImZGAcsz0bUCgQoPVcai5ibcxxA==
  • Delivered-to: jdt-dev@xxxxxxxxxxx
  • List-archive: <https://www.eclipse.org/mailman/private/jdt-dev/>
  • List-help: <mailto:jdt-dev-request@eclipse.org?subject=help>
  • List-subscribe: <https://www.eclipse.org/mailman/listinfo/jdt-dev>, <mailto:jdt-dev-request@eclipse.org?subject=subscribe>
  • List-unsubscribe: <https://www.eclipse.org/mailman/options/jdt-dev>, <mailto:jdt-dev-request@eclipse.org?subject=unsubscribe>
  • Thread-index: AdrBbdtqOW3vAcpiTXWh1XHiNqtDRgABtdQAAZIQkkAAMm7TgAAA9HtW
  • Thread-topic: [jdt-dev] junits not hooked anywhere

Underscore prefixed tests are intentionally disabled tests. In this thread, I am referring to new test classes created by the developer that very likely ran successfully in a manual fashion at the time of the merge but were inadvertently left unhooked up to top lever launchers. 

Srikanth.  

From: jdt-dev <jdt-dev-bounces@xxxxxxxxxxx> on behalf of Jörg Kubitz via jdt-dev <jdt-dev@xxxxxxxxxxx>
Sent: Thursday, June 27, 2024 5:09:37 PM
To: jdt-dev@xxxxxxxxxxx <jdt-dev@xxxxxxxxxxx>
Cc: Jörg Kubitz <jkubitz-eclipse@xxxxxx>
Subject: Re: [jdt-dev] junits not hooked anywhere
 

CAUTION: This email was sent from outside of Advantest.

If you are looking for tests that are not executed you can also search for "public void _test" with many hits.
You can manually run tests that are named like that but they won't  run automatically as the convention is that test methods have to start with "test". literally - no underscore allowed. Some of those seem to be "disabled" on purpose (name was changed), others have that name from beginning.
Example: org.eclipse.jdt.core.tests.model.ReconcilerTests16._testBug570399_002()
 
Jörg

Back to the top