2021-10-22 06:32:16 +00:00
|
|
|
# 42test
|
|
|
|
|
|
2021-10-22 10:26:25 +02:00
|
|
|
Unit Testing for 42 Projects
|
|
|
|
|
|
2021-10-22 10:53:42 +02:00
|
|
|
## Setup
|
|
|
|
|
|
|
|
|
|
```
|
2021-10-22 11:19:09 +02:00
|
|
|
git clone --recurse-submodules https://vogsphere.baco.net/baco/42test.git 42test
|
2021-10-22 10:56:37 +02:00
|
|
|
cd 42test
|
2021-10-22 11:14:51 +02:00
|
|
|
git config pull.rebase false
|
2021-10-27 10:18:58 +02:00
|
|
|
git config user.name "${USER-marvin}"
|
|
|
|
|
git config user.email "${MAIL-marvin@student.42lausanne.ch}"
|
2021-10-22 10:56:37 +02:00
|
|
|
|
|
|
|
|
# -OR-
|
|
|
|
|
|
|
|
|
|
git clone https://vogsphere.baco.net/baco/42test.git
|
|
|
|
|
cd 42test
|
2021-10-22 10:53:42 +02:00
|
|
|
git submodule update --init
|
2021-10-22 11:14:51 +02:00
|
|
|
git config pull.rebase false
|
2021-10-27 10:18:58 +02:00
|
|
|
git config user.name "${USER-marvin}"
|
|
|
|
|
git config user.email "${MAIL-marvin@student.42lausanne.ch}"
|
2021-10-22 10:53:42 +02:00
|
|
|
```
|
|
|
|
|
|
2021-10-22 11:08:18 +02:00
|
|
|
## Update
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
cd 42test
|
2021-10-22 11:36:56 +02:00
|
|
|
make update
|
2021-10-22 11:08:18 +02:00
|
|
|
```
|
|
|
|
|
|
2021-10-22 11:20:28 +02:00
|
|
|
## LibFT Unit Testing
|
|
|
|
|
|
|
|
|
|
Library Forty-Two like a mini Libc for string and memory functions.
|
|
|
|
|
|
|
|
|
|
- Follow the [libft](https://vogsphere.baco.net/baco/42test/src/branch/master/libft)
|
|
|
|
|
|