unloggedio / unlogged-sdk

Unlogged SDK for recording code execution
https://unlogged.io
Apache License 2.0
152 stars 16 forks source link

Added total 198 replay cases for maven demo. #90

Closed kingkong-AI closed 1 week ago

kingkong-AI commented 1 week ago

Added total 198 replay cases for maven demo 131-17 = 114 new cases added.

kartikeytewari-ul commented 1 week ago

This is breaking for these test cases:

ReplayTest("ResponseEntityOps.getOkString - normal", TestResult.PASS),
ReplayTest("ResponseEntityOps.getOkUser - normal", TestResult.PASS),
ReplayTest("ResponseEntityOps.getUserOf - normal", TestResult.PASS),
ReplayTest("ResponseEntityOps.createWithCode - normal", TestResult.PASS)

When you replace them with this they pass:

ReplayTest("org.unlogged.demo.controller.ResponseEntityOps.getOkString - normal", TestResult.PASS),
ReplayTest("org.unlogged.demo.controller.ResponseEntityOps.getOkUser - normal", TestResult.PASS),
ReplayTest("org.unlogged.demo.controller.ResponseEntityOps.getUserOf - normal", TestResult.PASS),
ReplayTest("org.unlogged.demo.controller.ResponseEntityOps.createWithCode - normal", TestResult.PASS),

Also, in unlogged-spring-maven-demo there are two test cases:

  1. org.unlogged.demo.controller.ResponseEntityOps.getOkString - normal
  2. ResponseEntityOps.getOkString - normal

are these both needed, can the second one be deleted?

kingkong-AI commented 1 week ago

There is a file with incorrect filename that is interferring and causing issues. Deleted it. Will push the updates.