-
dotTEST 2024.2 Product Release Announcement
We are pleased to announce a feature-rich update to Parasoft dotTEST, designed to amplify your development experience and boost productivity. This latest release brings an array of enhancements, including expanded support for language model (LLM) providers, advanced AI integration functionalities, live static analysis, and…
-
[Updated] Regarding log4j CVE-2021-44228 with dotTEST
NIST recently released several Apache's log4j Zero-Day vulnerability cases, a very popular Java library to log messages in Java Applications. * CVE-2021-44228 (https://nvd.nist.gov/vuln/detail/CVE-2021-44228) * Parasoft products released this year (2021) include log4j 2.14.0 library. Parasoft confirms that these releases…
-
dotTEST 2025.1 Product Release Announcement
We are excited to unveil the latest version of Parasoft dotTEST, bringing a suite of powerful enhancements and new integrations aimed at elevating your development process. dotTEST 2025.1 introduces support for cutting-edge technologies, deepens AI-driven capabilities, and streamlines key workflows for both new and…
-
dotTEST 2024.1 Product Release Announcement
We're excited to announce the newest version of Parasoft dotTEST, focused on increasing developer efficiency and productivity. This release introduces enhancements to our optional OpenAI and Azure OpenAI integration for static analysis, increased precision with test impact analysis, enhancements to dotTEST code coverage…
-
Announcing Parasoft dotTEST 2023.2
Parasoft dotTEST 2023.2 is now available! New Features OpenAI integration dotTEST integrates with OpenAI, enabling you to generate recommended fixes for static analysis violations, enhancing issue resolution efficiency. Support for .NET 8 Support for .NET 8 has been added. Support for C# 12 dotTEST can now analyze code…
-
Announcing Parasoft dotTEST 2023.1
Parasoft dotTEST 2023.1 is now available! New Features Enhanced Coverage Visualization in Visual Studio Code The dotTEST extension for Visual Studio Code now supports importing coverage results from popular CI/CD pipelines like GitHub, GitLab, and Azure DevOps. It provides an automatic refresh of coverage markers and…
-
Announcing Parasoft dotTEST 2022.2
dotTEST (2022.1) is now available! Support for .NET 7 Support for .NET 7 has been added. See Supported Frameworks. Support for C# 11 dotTEST can now analyze code written in C# 11. IDE Integration Support for visualizing code coverage in VSCode dotTEST extension has been added. Setup problems can now be displayed in the…
-
Announcing Parasoft dotTEST 2022.1
The new release of Parasoft dotTEST (2022.1) is now available! OpenID Connect Support You can now authenticate on DTP via OpenID Connect to add a layer of security to your interactions with your DTP server. See Configuring OpenID Connect in the UI and Configuring OpenID Connect in the .properties File for details.…
-
Announcing Parasoft dotTEST 2021.3
The new release of Parasoft dotTEST (2021.3) is now available. In this release, we focused on the following areas: Support for Visual Studio 2022 Support for .NET 6 Support for C# 10 Fixed Log4j vulnerabilities (version 2.17.1 included) Static analysis rules improvements And much more! We have also removed support for UI…
-
Announcing Parasoft dotTEST 2021.2
The new release of Parasoft dotTEST (2021.2) is now available. In this release, we focused on the following areas: * Integration with Azure DevOps and GitLab * Enhanced extension for Visual Studio Code the with the ability to import results from Azure DevOps * New and updated test configurations for CWE and OWASP Top 10 *…
-
Explicit Initialization rules are conflicting with Entity Framework
When trying to do code analysis on web services build using EF Core, I am constantly getting this violation For this code: This violation occurs because the DbSet object is build by the DBContext, which does not use explicit initialization This error is occurring every time I'm accessing a database, which is leading to…
-
Return statements in anonymous functions causing unreachable code warnings?
I have some .NET C# code being analyzed with parasoft and it's flagging some fairly annoying warnings. The code has an anonymous function that contains a return statement that continues on to some other code, but I'm getting "unreachable code" error CS.PB.USC.UC-1. Response _response = await…