Skip to content

audioglider/OpenCodeCoverageFramework

 
 

Repository files navigation

How to manage issues

  1. Create issues on GitHub

  2. Create new branch with the following command (XX is the issue number and YYYY is the abstract):

     git pull
     git checkout -b XX_YYYY
    

    Note that this command create a branch from the current branch.

  3. Write and commit code!

  4. Commit the final code with the following command

     git commit -m "brah brah brah ... Close #XX"
    
  5. Merge the branch into the "master" branch

     git checkout master
     git merge XX_YYYY
     git push origin master
     git branch -d XX_YYYY
    

    Note that git shows errors if the merge is failed.

Developers

Kazunori Sakamoto
Kiyofumi Shimojo
Ryohei Takasawa

About

OpenCodeCoverageFramework (OCCF) is a framework for measuring test coverage supporting multiple programming languages.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 68.1%
  • C# 13.8%
  • C++ 12.3%
  • GAP 3.0%
  • Java 2.2%
  • Python 0.5%
  • Other 0.1%