Thanks Dmitry, We use and enhanced version of %UnitTest already on our unit tests and behind the scenes functional tests.

We are looking for a way to run feature files directly in Cache.  Ultimately these files will get broken down into test cases and tests, but that breakdown, running and reporting is what needs to be built if there isn't already something out there.

Ex feature file:

Feature: Login Action

Scenario: Successful Login with Valid Credentials
    Given User is on Home Page
    When User Navigate to LogIn Page
    And User enters UserName and Password
    Then Message displayed Login Successfully

Scenario: Successful LogOut
    When User LogOut from the Application
    Then Message displayed LogOut Successfully

-Karl