This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
# | |
# Testy pro 1. IZP projekt [2024] | |
# Autor: theramsay | |
# Inspirace https://github.com/JosefKuchar/izp-projekt-1/blob/main/test.py | |
# Priklady pouziti: | |
# python3 ./test.py t9search | |
# python3 ./test.py t9search --bonus 2 | |
# | |
# Verze: 1.1 - Přidány testy od @toaster pro edge case na max délku řádku |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
# | |
# Testy pro 2. IZP projekt [2022] | |
# Autor: - Ramsay#2303 | |
# Zdroj testu: https://github.com/harmim/vut-izp-proj3/tree/master/tests | |
# Priklady pouziti: | |
# python3 ./test.py cluster --valgrind | |
import argparse |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create table TypProgramu | |
( | |
popisTypu nvarchar2(255) primary key, | |
constraint popisTypu_check check(popisTypu in ('bakalářské studium', 'magisterské studium', 'doktorské studium')) | |
); | |
create table Osoba | |
( | |
cisloOsoby int primary key, | |
jmeno nvarchar2(255) not null, |