Commit graph

18 commits

Author SHA1 Message Date
Matthew Jaffee
e297a6775d have simulacradata tests clean up generated files 2022-01-17 09:39:28 -06:00
pokeeffe-molecula
7e8d217208 so much fail... 2022-01-11 12:21:38 -06:00
pokeeffe-molecula
994ba6f597 ignore in sonarcloud 2022-01-11 10:30:28 -06:00
pokeeffe-molecula
4b192ee8bf added progress reporting 2022-01-10 18:02:45 -06:00
reesporte
48aef0c8a4 add copyright notice back in
```bash
for file in `cat diffys`; do
   printf '%s\n%s\n' "// Copyright 2021 Molecula Corp. All rights reserved." "$(cat $file)" >$file;
done
```
2021-12-10 11:01:04 -06:00
reesporte
4c53f86e82 removed license from each go file
i used this script, a little clunky but it got the job done

```bash
for file in `find . -type f -print | grep '\.go'`; do
    sed '1,/^\/\/ limitations under the License.$/d' $file > $file.tmp;
    result=`cat $file.tmp`
    if [[ result != "" ]]; then
        gofmt $file.tmp &> /dev/null;
        if [[ $? == 0 ]]; then
            mv $file.tmp $file && gofmt -w $file;
        else
            rm $file.tmp;
        fi
    else
        rm $file.tmp;
    fi
done
```
2021-12-10 09:17:17 -06:00
kcrodgers24
50e7cda07f modify functions to accept a requested num of records 2021-11-22 14:53:17 -08:00
kcrodgers24
49289f2237 replace fmt.Print with t.Fatal, and improve date generator 2021-11-22 13:53:41 -08:00
kcrodgers24
06be6c0981 use log.Fatal in lieu of fmt.Print 2021-11-22 11:06:38 -08:00
kcrodgers24
2385fda259 add tests, remove commented code 2021-11-22 10:45:12 -08:00
kcrodgers24
97c4ee670b add tests 2021-11-22 10:43:13 -08:00
kcrodgers24
4f5f27f513 make error handling best 2021-11-19 11:47:32 -08:00
kcrodgers24
dc9c2a842a make error handling better 2021-11-19 09:38:12 -08:00
kcrodgers24
b5e5df8b58 add error checking 2021-11-18 16:10:49 -08:00
kcrodgers24
27b73d2b7d corrects typo on line 229 2021-11-18 14:27:19 -08:00
kcrodgers24
90ace6b970 deletes duplicate file and adds license header 2021-11-18 13:47:23 -08:00
kcrodgers24
14050c567c corrects naming convention and age range 2021-11-18 13:15:44 -08:00
Todd Gruben
442d109814 created qa folder 2021-11-18 10:28:49 -06:00