Skip to content

Create a more sophisticated calculator in the context of the software evolution course (UMONS, PhD Mens course)

Notifications You must be signed in to change notification settings

AlixDeclerck/calculator-cucumber

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Code quality: Maven Build BCH compliance

Codacy Badge

Test coverage: Coverage Branches

About

This repository (contains Java 17 code) is a fork of https://github.com/tommens/calculator-cucumber repository for computing arithmetic expressions.

The code is used (for educational purposes at the University of Mons, Belgium) to create a more sophisticated calculator in the context of the software evolution course.

Unit testing and BDD

  • All tests can be found in the src\test directory. They serve as executable documentation of the source code.
  • The source code is accompanied by a set of JUnit 5 unit tests. These tests can be written and run in the usual way. If you are not familiar with unit testing or JUnit 5, please refer to https://junit.org/junit5/.
  • The source code is accompanied by a set of Cucumber BDD scenarios, also running in Junit. If you are not familiar with Cucumber and BDD, please refer to https://cucumber.io/docs/cucumber/. The BDD scenarios are specified as .feature files in the src\test\resources directory. Some classes defined in src\test take care of converting these scenarios to executable JUnit tests.

Prerequisites

  • You will need to have a running version of Java 17 on your machine in order to be able to compile and execute this code.
  • You will also need to have a running version of Maven, since this project is accompanied by a pom.xml file so that it can be installed, compiled, tested and run using Maven.

Installation and testing instructions

  • Upon first use of the code in this repository, you will need to run "mvn install" to ensure that all required project dependencies (e.g. for Java, JUnit, Cucumber, and Maven) will be downloaded and installed locally.
  • Assuming you have a sufficiently recent version of Maven installed (the required versions are specified as properties in the POM file), you can compile the source code using "mvn compile"
  • Once the code is compiled, you can execute the main class of the Java code using "mvn exec:java"
  • The tests and BDD scenarios are executable with Maven using "mvn test"
  • Note that the tests are also executed when you do a "mvn install". It is possible to skip those tests by providing an extra parameter. For details of more advanced uses of Maven, please refer to its official documentation https://maven.apache.org/guides/.
  • After that using " java -jar target/calculator-cucumber-[version].jar "

Test coverage and JavaDoc reporting

  • In addition to testing the code, "mvn test" will also generate a test coverage report (in HTML format) using JaCoCo. This test coverage is generated in target/site/jacoco.
  • When packaging the code using "mvn package" the JavaDoc code documentation will be generated and stored in target/site/apidocs.

Built With

  • Maven - an open source build automation and dependency management tool
  • JUnit5 - a unit testing framework for Java
  • Cucumber - a tool for Behaviour-Driven Development
  • JaCoCo - a code coverage library for Java

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Contributors

  • Tom Mens
  • Gauvain Devillez @GauvainD
  • Damien Legay @DamienLegay
  • Laurence
  • Guillaume
  • Thomas
  • Sahi
  • Alix

Licence

This code is licensed as CC BY-SA 4.0 (Creative Commons Attribution-ShareAlike 4.0 International) https://creativecommons.org/licenses/by-sa/4.0/

icons of buttons source : https://www.freepik.com

Acknowledgments

  • Software Engineering Lab, Faculty of Sciences, University of Mons, Belgium.

About

Create a more sophisticated calculator in the context of the software evolution course (UMONS, PhD Mens course)

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 98.0%
  • Gherkin 1.1%
  • Other 0.9%