aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorshmibs <shmibs@gmail.com>2015-12-22 02:04:19 -0700
committershmibs <shmibs@gmail.com>2015-12-22 02:04:19 -0700
commitc4323ab30627efc1c2a1a25796e17d53423f6381 (patch)
tree56fb47c6f2dff30e8a782f9dfcf324522ef0f4f6
parent00580832ba5b6df50eaf0ddff86ecf6e29c13d02 (diff)
downloadsimple-test-c4323ab30627efc1c2a1a25796e17d53423f6381.tar.gz
remove redundant docs
-rw-r--r--doc/usage.pdfbin102190 -> 0 bytes
-rw-r--r--doc/usage.tex129
2 files changed, 0 insertions, 129 deletions
diff --git a/doc/usage.pdf b/doc/usage.pdf
deleted file mode 100644
index efdfaf7..0000000
--- a/doc/usage.pdf
+++ /dev/null
Binary files differ
diff --git a/doc/usage.tex b/doc/usage.tex
deleted file mode 100644
index ab8b3d6..0000000
--- a/doc/usage.tex
+++ /dev/null
@@ -1,129 +0,0 @@
-%%%%%%%%%%%
-% SETUP %
-%%%%%%%%%%%
-
-\documentclass[a4paper]{article}
-\usepackage[utf8]{inputenc}
-\usepackage[T1]{fontenc}
-\usepackage[usenames,x11names,table]{xcolor}
-
-\usepackage{listings}
-\usepackage{framed}
-
-%%% -------------------------------------------------------
-%%% universal formatting
-%%% -------------------------------------------------------
-
-\parindent 0pt
-\frenchspacing
-\pagestyle{empty}
-
-\setlength{\oddsidemargin}{0in}
-\setlength{\evensidemargin}{0in}
-\setlength{\marginparsep}{0in}
-\setlength{\marginparwidth}{0in}
-\setlength{\textwidth}{6.5in}
-
-\setlength{\topmargin}{0in}
-\setlength{\headsep}{0in}
-\setlength{\headheight}{0in}
-\setlength{\textheight}{9in}
-
-%%% -------------------------------------------------------
-%%% custom commands
-%%% -------------------------------------------------------
-
-% a horizontal box with coloured background
-\newcommand{\myheading}[1]{
- {
- \definecolor{shadecolor}{named}{Azure4}
- \begin{snugshade*}
- \centering\large
- \textcolor{white}{\textbf{-- #1 --}\vphantom{p\^{E}}}
- \end{snugshade*}
- }
-}
-
-\newcommand{\mytermrow}[2]{
- \tt\bf\small #1 & \tt\small #2 \\
-}
-
-
-
-\begin{document}
-
- % setup
- \frenchspacing
-
- % C styling
- \lstdefinestyle{customc}{
- language=C,
- basicstyle=\small\ttfamily,
- breaklines=true,
- keepspaces=true,
- xleftmargin=\parindent,
- % colours
- commentstyle=\color{DodgerBlue2},
- identifierstyle=\color{Red1},
- keywordstyle=\color{Purple3},
- stringstyle=\color{SpringGreen4},
- numbers=left,
- showstringspaces=false,
- }
-
-
- \myheading{usage}
-
- Your tests should be written as a single .c file separate from
- the body of text containing your functionality to be tested.
- A simple example might look something like this: \\
-
- \hrule
- \lstset{style=customc}
- \lstinputlisting{a_simple_example.c}
- \hrule
- \pagebreak
-
- If the second test was ommited, the ouput would look like this:\\
-
- \hrule
- \vspace{8pt}
-
- % successful output
- {\tt\bf\small a\_simple\_example.c}\\
- \begin{tabular*}{\textwidth}{r@{\ \tt\bf :: }l}
- \mytermrow{1}{\color{Yellow4}check add()'s return value}
- \mytermrow{ }{\color{SpringGreen4}success!}
- \end{tabular*}
-
- \vspace{8pt}
- \hrule
- \vspace{20pt}
-
- If the second test was included, it would look like this:\\
-
- \hrule
- \vspace{8pt}
-
- % failed output
- {\tt\bf\small a\_simple\_example.c}\\
- \begin{tabular*}{\textwidth}{r@{\ \tt\bf :: }l}
- \mytermrow{1}{\color{Yellow4}check add()'s return value}
- \mytermrow{2}{\color{Yellow4}compare two arrays of strings}
- \mytermrow{ }{\color{DodgerBlue2}checking strs at i == 0...}
- \mytermrow{ }{\color{DodgerBlue2}checking strs at i == 1...}
- \mytermrow{ }{\color{DodgerBlue2}checking strs at i == 2...}
- \mytermrow{ }{\textbf{a\_simple\_example.c:41: \textcolor{Red1}{fail:}} strings unequal}
- \mytermrow{ }{\ \ \textbf{array1[i]} == `str3'}
- \mytermrow{ }{\ \ \textbf{array2[i]} == `different'}
- \end{tabular*}
-
- \vspace{8pt}
- \hrule
- \vspace{20pt}
-
- For detailed descriptions of all available tests, see the included man page
- or README.md .
-
-\end{document}
-