Giter Site home page Giter Site logo

quinterac's Introduction

Quinterac

  • CISC/CMPE 327 group 17

Assignment 1: Test Plans

Please see TestPlan.md for the test plan documentation, and test_cases.pdf under tests folder for the table.

Assignment 2: Front End Prototypes

The first prototype of AFK Quinterac can be found under the frontend folder.

Assignment 3: Front End Test Cases

  • The test description and failure report are under frontend/, see README inside the frontend folder for more details.
  • The expected input, output, accounts, transaction files can be seen under frontend/tests/.
  • The bash version of the test can be found at frontend/tests/test.sh.
  • The jUnit+Maven version of the test can be found under frontend/src/test/java/ca/queensu/cisc327/afk/.

Assignment 4: Back End Prototypes

  • The source code of the backend prototype can be found under the backend/src/main/.../office folder.
  • The design document can be found at backend/A4_Design_Document.pdf

Assignment 5: Back End Test Cases

  • The report can be found at backend/CreateAccountTestReport.pdf and backend/WithdrawTestReport.pdf
  • The test code can be found under backend/src/test/.../actions folder.

Assignment 6: Integration

  • Files that related to assignment 6 can be seen under integration folder.

quinterac's People

Contributors

rykrr avatar briannali avatar shiahoan avatar lushihao avatar

Watchers

 avatar

quinterac's Issues

Use scanner API?

public Console() {
}
//read the next line of console input
public String readString() {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
try {
String line = reader.readLine();
return line;
} catch (IOException e) {
e.printStackTrace();
return "";
}
}

public class Console {
     Scanner scanner = new Scanner(System.in);

    public Console() {
    	
    }
    
    //read the next line of console input
    public String readString() {
    	return this.scanner.nextLine();
    }
    
   public void close(){
      this.scanner.cllose()
}


Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.