https://github.com/warrendodsworth/wncodingtask
Coding Task - AngularJS - Numeric Sequence Calculator Website
https://github.com/warrendodsworth/wncodingtask
Last synced: 11 months ago
JSON representation
Coding Task - AngularJS - Numeric Sequence Calculator Website
- Host: GitHub
- URL: https://github.com/warrendodsworth/wncodingtask
- Owner: warrendodsworth
- License: apache-2.0
- Created: 2015-08-14T02:13:38.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-11-05T23:56:04.000Z (over 10 years ago)
- Last Synced: 2025-04-02T23:18:12.617Z (about 1 year ago)
- Language: C#
- Homepage:
- Size: 1020 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Numeric Sequence Calculator
# Calculation
The entry of a number (between 0 to n positive) by a user will prompt the system to do a calculation.
Results will be a sequence of numbers from 0 up until and including the number entered.
##Demo on Azure
[Click here](http://sequencegenerator.azurewebsites.net) to have a look.
## S3.1 The following numeric sequences shall be displayed
S3.1.1 All numbers up to and including the number entered
S3.1.2 All odd numbers up to and including the number entered
S3.1.3 All even numbers up to and including the number entered
S3.1.4 All numbers up to and including the number entered, except when
S3.1.4.1 A number is a multiple of 3 output C
S3.1.4.2 A number is a multiple of 5 output E
S3.1.4.3 A number is a multiple of both 3 and 5 output Z
S3.1.5 All fibonacci number up to and including the number entered
## End to End UI testing
Done with angular protractor
Checks that all sequences are as expected based on the number input
Run from cmd using protractor protractor.spec.js
## Unit Testing
Done with .Net Unit testing framework
Checks that all sequences are valid, that the number of elements is correct and that each expected element is in position.