- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for verifyCn (0.04 sec)
-
src/test/java/org/codelibs/fess/timer/SystemMonitorTargetTest.java
// Log the exception for debugging purposes but don't fail the test System.out.println("Expected exception in test environment: " + t.getClass().getSimpleName() + ": " + t.getMessage()); // Verify that it's a system-related exception, not a method signature issue assertTrue("Exception should be system-related", t instanceof RuntimeException || t instanceof AssertionError
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 8.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
for (final String command : commands) { processedCommands.add(command.replace("${url}", tempPath).replace("${outputFile}", outputPath)); } // Verify variable replacement assertEquals(3, processedCommands.size()); for (final String cmd : processedCommands) { assertFalse("Command should not contain ${url}", cmd.contains("${url}"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 16.4K bytes - Viewed (0) -
pom.xml
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId>
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 03:01:32 UTC 2025 - 4.9K bytes - Viewed (0) -
.github/workflows/ci.yml
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 19:19:31 UTC 2025 - 4.7K bytes - Viewed (0) -
android/pom.xml
You may find that you need to use Java 11+ to *build* Guava, but it continues to work under Java 8, and you can run tests to verify that, as we do. --> <surefire.toolchain.version>${java.specification.version}</surefire.toolchain.version> <!-- Override this with -Dtest.include="**/SomeTest.java" on the CLI -->
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 24.3K bytes - Viewed (0) -
pom.xml
You may find that you need to use Java 11+ to *build* Guava, but it continues to work under Java 8, and you can run tests to verify that, as we do. --> <surefire.toolchain.version>${java.specification.version}</surefire.toolchain.version> <!-- Override this with -Dtest.include="**/SomeTest.java" on the CLI -->
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 23.9K bytes - Viewed (0) -
README.md
mvn formatter:format # Apply license headers to source files mvn license:format # Build JAR with all verifications mvn clean package # Generate test coverage report mvn verify # Coverage report available at: target/site/jacoco/index.html ``` ### Project Structure ``` corelib/ ├── src/main/java/org/codelibs/core/ │ ├── beans/ # Bean manipulation and introspection
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0)