Skip to content

i-Run/testControlByteCode

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

testControlByteCode

History and use case

Since 2011

Tool created after multiple runtime problem.

Use case :

  • Identify missing libraries on runtime
  • Identify duplicate classes in the classpath
  • Check if all methods called in application are present in the dependencies with the right signatures
    • Example : public void method1(String arg1, String arg2) become public void method1(String... args)
  • Dependency analysis between libraries
  • Creates a graphviz file (.dot) to display dependencies via a graph
  • Determines or controls dependencies of a library

Running the tool

  • Add the maven/gradle dependencies in your project test scope
<dependency>
    <groupId>com.efluid.oss</groupId>
    <artifactId>test-control-byte-code</artifactId>
    <version>1.2.0</version>
    <scope>test</scope>
</dependency>

About

Contains efluid tools testControlByteCode

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%