#!/bin/bash
#   author:martinmhan@yahoo.com date:  22/04/2014
#   assertTest is a small application to compare user regular expressions against those in a file
#   Copyright (C) <2014>  <Martin Mohan>
#
#   This program is free software; you can redistribute it and/or modify
#   it under the terms of the GNU General Public License as published by
#   the Free Software Foundation; either version 3 of the License, or
#   (at your option) any later version.
#
#   This program is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#   GNU General Public License for more details.
#
#   You should have received a copy of the GNU General Public License
#   along with this program; if not, write to the Free Software Foundation,
#   Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA

# bash uses 1,0 for false/true
FALSE=1
TRUE=0
export PATH=.:$PATH
echo "$0 Commands:" 
assertEqual
assertGrep
assertTrue
assertFalse

#set -x
#assertEqual.sh 'echo hello world' 'hello world'
#assertGrep.sh 'echo hello world' 'hello'
#assertTrue.sh 'echo hello world'
#assertFalse.sh 'echo hello world'
