public void Verify()
        {
            var location = new AssemblyInformationService().GetLocation();

            Assert.IsNotNull(location);
            Assert.IsTrue(Directory.Exists(location));
        }
        public void VerifyGetProcessorArchitecture()
        {
            var processorArchitecture = new AssemblyInformationService().GetProcessorArchitecture();

            Assert.IsNotNull(processorArchitecture);
            Assert.IsFalse(processorArchitecture == ProcessorArchitecture.None);
        }