Esempio n. 1
0
        public void ReturnSqlitePathToChrome_IsLocalPath()
        {
            bool   isLocalPath = false;
            string path        = PasswordServices.ReturnSqlitePathToChrome();

            if (path.Contains("Local"))
            {
                isLocalPath = true;
            }
            Assert.IsTrue(isLocalPath);
        }
Esempio n. 2
0
        public void ReturnSqlitePathToChrome_IsNotNull()
        {
            string path = PasswordServices.ReturnSqlitePathToChrome();

            Assert.IsNotNull(path);
        }