// File Name: TestBench2B.v
`timescale 1ns/1ns
module TestBench2B();
  reg [2:0] ls, rs;		// Left and right sensors
  reg lb, rb, fb, bb;	// Left, front, back, and right bumpers
	wire [2:0] lwa, rwa; // Left and right wheel actions
												// One-hot: 100 -> F, 010 -> R, 001 -> S
                        
  // TODO: Instantiate Renee and connect the appropriate signals

  // Specify your test procedures
  initial begin
    // first test: check LB and BB bumpers only
    ls = 3'd0; // remember: you can provide numbers in decimal too!
    rs = 3'b000;
    lb = 1'b0; 
    rb = 1'b1;
    bb = 1'b0; 
    fb = 1'b1;
    #10; // remember to add delays between testcases!

    // TODO: Add more testcases

  end

endmodule // TestBench2B