public void GetAgentVersion()
        {
            var platform     = new Platform(new GaePlatformDetails(_projectId, "instance", _module, _version));
            var agentVersion = DebuggeeUtils.GetAgentVersion(platform);

            Assert.Contains("google.com", agentVersion);
            Assert.Contains("csharp", agentVersion);
            Assert.Contains("gae", agentVersion);
            Assert.Contains(DebuggeeUtils.GetVersion(), agentVersion);
        }
 public void GetVersion()
 {
     Assert.False(string.IsNullOrWhiteSpace(DebuggeeUtils.GetVersion()));
 }