37 lines
726 B
Markdown
37 lines
726 B
Markdown
# 42test
|
|
|
|
Unit Testing for 42 Projects
|
|
|
|
## Setup
|
|
|
|
```
|
|
git clone --recurse-submodules https://vogsphere.baco.net/baco/42test.git 42test
|
|
cd 42test
|
|
git config pull.rebase false
|
|
git config user.name "${USER-marvin}"
|
|
git config user.email "${MAIL-marvin@student.42lausanne.ch}"
|
|
|
|
# -OR-
|
|
|
|
git clone https://vogsphere.baco.net/baco/42test.git
|
|
cd 42test
|
|
git submodule update --init
|
|
git config pull.rebase false
|
|
git config user.name "${USER-marvin}"
|
|
git config user.email "${MAIL-marvin@student.42lausanne.ch}"
|
|
```
|
|
|
|
## Update
|
|
|
|
```
|
|
cd 42test
|
|
make update
|
|
```
|
|
|
|
## 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)
|
|
|