This file contains hidden or 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
| [TestFixture] | |
| public class SpecificationFixture | |
| { | |
| [Test, TestCaseSource("GetSpecificationTestCases")] | |
| public void Verify(SpecificationToRun spec) | |
| { | |
| var runner = new SpecificationRunner(); | |
| RunResult result = runner.RunSpecifciation(spec); | |
| if (result.Passed) |
This file contains hidden or 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
| #!/bin/bash | |
| # doesn't remove packages. just beginning/sharing script for the install. | |
| if [ -e /etc/redhat-release ]; then | |
| yum install -y gcc make autoconf automake e2fsprogs-devel glibc-devel | |
| elif [ -e /etc/debian_version ]; then | |
| apt-get install -y build-essential uuid-dev | |
| else | |
| echo "sorry, this script only installs on RedHat/CentOS or Debian/Ubuntu boxes" | |
| exit 2 |
NewerOlder