-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathREADME.TXT
More file actions
42 lines (32 loc) · 1.6 KB
/
Copy pathREADME.TXT
File metadata and controls
42 lines (32 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Numeric Utilities Project
## CS3250 Practice - Fall 2024
This project provides scaffolding for exploration and
practice with test-driven development.
It also supports exploration of memoizing.
The repository is configured for use with BlueJ to facilitate student access.
### Utilities.java
This is a source code framework for implementing the Utilities class
The specifications for each method are provided in the javadoc comments.
Because this is a utility class
- It is non-extendable (finality "final")
- The constructor is hidden (visibility "private")
- All utility methods are accessible (visiblity "public")
### UtilitiesTest.java
This is a starting point for JUnit tests that check methods in Utilities.
It includes
- A constructor
- General test-fixture setup and teardown methods
- Sample unit test methods for at least one method in Utilities.
## Copyright Notice
NumericUtilities provides scaffolding for exploration and practice with test-driven development and memoizing.
Copyright (C) 2024 Dr. Jody Paul
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see https://www.gnu.org/licenses/